Review Note
Last Update: 07/10/2024 01:20 PM
Current Deck: Python fundamentals
PublishedCurrently Published Content
Code
Output
Explanation
Context
Current Tags:
Pending Suggestions
Field Change Suggestions:
Code
Commit #334677a = [1, 2]
b = [3, 4, 5]
for i in zip(a, b):
print(i)
|
Output
Commit #334677
(1, 4)3)
(2, 5)4)