python-CSD-kursu/python-temel/s.while.py

7 lines
96 B
Python

s = {1, 10, 'ali', 20, 'veli', 'selami'}
while s:
x = s.pop()
print(x, end = ' ')