For example,
asdf=turtle.Turtle()
asdf1=asdf.clone()
asdf2=asdf.clone()
asdf3=asdf.clone()
a=random.randrange(1, 4)
asdf[a].goto(0, 0)
like this, I want to specify object, and move it. Is there a way to do this? Or should I just repeat the if-else syntax?