Snippet content copied to clipboard.
Are you sure to delete this snippet? No, don't delete
  1. from turtle import Turtle,Screen
  2. import random
  3. timmy=Turtle()
  4. timmy.shape('turtle')
  5. colors = ["red", "green", "blue", "orange", "purple", "yellow", "pink", "cyan", "magenta", "black"]
  6. run=True
  7. screen=Screen()
  8. def exit(x,y):
  9. global run
  10. run=False
  11. screen.onclick(exit)
  12. directions=[0,90,180,270]
  13. while run:
  14. direction=random.choice(directions)
  15. timmy.setheading(direction)
  16. colour=random.choice(colors)
  17. timmy.pensize(15)
  18. timmy.speed('fast')
  19. timmy.color(colour)
  20. timmy.forward(30)
  21. screen.bye()

Edit this Snippet