Advertisement
Guest User

Turtle "Olympics"

a guest
Sep 1st, 2015
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.42 KB | None | 0 0
  1. import turtle
  2. turtle.up()
  3. turtle.goto(-60,0)
  4. turtle.down()
  5. turtle.color("blue")
  6. turtle.circle(40)
  7. turtle.up()
  8. turtle.forward(100)
  9. turtle.down()
  10. turtle.color("green")
  11. turtle.circle(40)
  12. turtle.up()
  13. turtle.forward(100)
  14. turtle.down()
  15. turtle.color("yellow")
  16. turtle.circle(40)
  17. turtle.right(180)
  18. turtle.up()
  19. turtle.forward(120)
  20. turtle.right(90)
  21. turtle.forward(10)
  22. turtle.down()
  23. turtle.color("red")
  24. turtle.circle(40)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement