Answers for "how to do a for loop with the index"

7

for loop with index python3

colors = ["red", "green", "blue", "purple"]

for i in range(len(colors)):
    print(colors[i])
Posted by: Guest on January-28-2020
0

index in for loop

for idx, item in list:
	print(idx + "# " + item)
Posted by: Guest on June-17-2021

Python Answers by Framework

Browse Popular Code Answers by Language