python for loop range length of list code example
Example 1: how to loop the length of an array pytoh
array = range(10)
for i in range(len(array)):
print(array[i])
Example 2: iterating with index in for loops python
colors = ["red", "green", "blue", "purple"]
ratios = [0.2, 0.3, 0.1, 0.4]
for color, ratio in zip(colors, ratios):
print("{}% {}".format(ratio * 100, color))