Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Secret Message by Nazar777888
def find_message(t: str) -> str:
rand=''
for world in t:
if world.isupper():
rand=rand+world
return rand
March 5, 2019
Comments: