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

6 lines
76 B
Python

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