Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Secret Message by darasg2008
def find_message(text):
mess=""
for ch in text:
if ch>='A' and ch<='Z':
mess=mess+ch
if mess!="":
return mess
return ""
Nov. 3, 2016