Odpowiedź:
def odwroc():
text = input("Wpisz jakiś tekst: ")
return text[::-1]
print(odwroc())
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
Odpowiedź:
def odwroc():
text = input("Wpisz jakiś tekst: ")
return text[::-1]
print(odwroc())