python-CSD-kursu/walrus.alternative.py

6 lines
101 B
Python
Raw Normal View History

2023-05-20 10:38:27 +00:00
while True:
s = input('Bir yazı giriniz:')
if s == 'quit':
break
print(s[::-1])