python-CSD-kursu/python-temel/for.2.py

4 lines
81 B
Python

s = {'Ali', 'Veli', 10, 12.4, 'Selami'}
for x in s:
print(x, '=>', type(x))