Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Secret Message by Nirmala
def find_message(text):
"""Find a secret message"""
text_upper = ""
for ch in text:
if ch == ch.upper() and ch.isalpha():
text_upper += ch
return text_upper
print (text_upper)
Nov. 7, 2016
Comments: