python-CSD-kursu/s.ankara.py

6 lines
51 B
Python
Raw Normal View History

2023-05-20 08:16:08 +03:00
s = 'ankara'
while s:
print(s)
s = s[1:]