zip functioin 2

This commit is contained in:
Mert Gör ☭ 2023-06-12 15:19:48 +03:00
parent ac452f2a02
commit 122aff1549
No known key found for this signature in database
GPG Key ID: 2100A876D55B39B9
1 changed files with 5 additions and 0 deletions

View File

@ -0,0 +1,5 @@
a = [1, 2, 3, 4, 5]
b = ['ali', 'veli', 'selami', 'ayşe', 'fatma']
for x, y in zip(a, b):
print(x, y)