Use zip and for-loop
Example:
a = ["a", "b", "c"]
b = [1, 2, 3]
for e1, e2 in zip(a, b):
print(e1, e2)
Output:
a 1
b 2
c 3
Use zip and for-loop
Example:
a = ["a", "b", "c"]
b = [1, 2, 3]
for e1, e2 in zip(a, b):
print(e1, e2)
Output:
a 1
b 2
c 3
For further actions, you may consider blocking this person and/or reporting abuse
Saad Alkentar -
Olga Braginskaya -
Mayowa Julius -
Raja Yadav -
Top comments (0)