python-CSD-kursu/python-temel/zip.function.4.py

3 lines
82 B
Python

for x, y, z in zip(range(0, 5), range(10, 15), range(20, 25)):
print(x, y, z)