https://treyhunner.com/2016/04/how-to-loop-with-indexes-in-python/#range_of_length
colors = ["red", "green", "blue", "purple"] for i in range(len(colors)): print(colors[i])