Answers for "python loop with two variables"

22

python loop two

for f, b in zip(foo, bar):
    print(f, b)
Posted by: Guest on March-30-2020
0

how to create multiple variables in a loop python

# i gets added to the end of the var name
i = 1
for n in range(5):
    globals()["w" + str(i)] = ###Do what you want here
    i += 1
Posted by: Guest on April-22-2020

Code answers related to "python loop with two variables"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language