Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Using ord() solution in Clear category for Secret Message by PawlakBartosz43
def find_message(text):
result = ""
for i in text: #repeat for each character in a string
if(ord(i) >= 65 and ord(i) <= 90): #ord() returns the ASCII value of a character as int
result += i
return result
Oct. 31, 2016