zip function 5

This commit is contained in:
Mert Gör 🇹🇷 2023-06-12 15:26:59 +03:00
parent 6db47ca7c9
commit a4bf08cd71
No known key found for this signature in database
GPG Key ID: 2100A876D55B39B9

View File

@ -0,0 +1,5 @@
a = [1, 2, 3]
b = [10, 20, 30, 40, 50]
for t in zip(a, b):
print(t)