Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
secret message solution in Uncategorized category for Secret Message by sebastian.okseniuk
def find_message(text):
wyraz = []
odp = ""
i = 0
for litera in text:
if litera.isupper():
wyraz.append(litera)
print(wyraz)
while i < len(wyraz):
odp = odp + wyraz[i]
i +=1
print(odp)
return odp
Dec. 2, 2015