Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Secret Message solution in Clear category for Secret Message by michal_bien
def find_message(text):
resolution = ''
for char in text:
if char.isupper():
resolution+=char
return resolution
Oct. 6, 2016