Review Note

Last Update: 07/10/2024 01:20 PM

Current Deck: Python fundamentals

Published

Currently Published Content


Code
Output
Explanation
Context

Current Tags:

python_fundamentals

Pending Suggestions


Field Change Suggestions:
a = [1, 2]
b = [3, 4, 5]

for i in zip(a, b):
    print(i)

(1, 4)3)
(2, 5)4)