python-CSD-kursu/python/for_example.py

5 lines
71 B
Python

a = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
for i in a:
print(i, end=' ')