Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

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))
Source by treyhunner.com #
 
PREVIOUS NEXT
Tagged: #iterating #index #loops #python
ADD COMMENT
Topic
Name
8+6 =