zip function 7

This commit is contained in:
Mert Gör 🇹🇷 2023-06-12 15:35:15 +03:00
parent 3e83feb1cc
commit 1711f30db0
No known key found for this signature in database
GPG Key ID: 2100A876D55B39B9

View File

@ -0,0 +1,6 @@
a = [1, 2, 3, 4, 5]
b = ['ali', 'veli', 'selami', 'ayşe', 'fatma']
c = [10, 20, 30, 40, 50]
for t in zip(a, b, c):
print(t)