Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Secret Message one line solution in Clear category for Secret Message by StroamCR
def find_message(text):
"""Find a secret message"""
return ''.join([char for char in text if char.isupper()])
Dec. 29, 2017