Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Secret Message by Dominik_Witczak
def find_message(text):
answer = "" #intial value, it is the result if none of the string elements is a capital
for var in text:
if var.isupper() : #check if given letter is capital
answer += str(var) #append this capital letter to the string
return str(answer)
Oct. 20, 2017