I decided to try to do a turtle project to learn the random commands. My question is in this code:
pos = 360
while a.ycor()<pos:
a.forward(randint(1,5))
while b.ycor()<pos:
b.forward(randint(1,5))
while c.ycor()<pos:
c.forward(randint(1,5))
while d.ycor()<pos:
d.forward(randint(1,5))
while e.ycor()<pos:
e.forward(randint(1,5))
how can I get all the conditionals to execute at the same time to start the race (all turtles take off at the same time)?