I want to use code like so:
import turtle as trtl
turtle = ["One", "Two", "Three"]
for each in turtle:
each = trtl.Turtle()
I don't want three turtles named "each", I want each iteration of the for loop to use the variable each, but not the string "each". Is this possible?