Advertisement
Guest User

Untitled

a guest
Oct 13th, 2015
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. from turtle import*
  2. speed("fastest")
  3. color("red")
  4. begin_fill()
  5. forward(200)
  6. left(120)
  7. forward(200)
  8. left(120)
  9. forward(200)
  10. end_fill()
  11.  
  12. pu()
  13. goto(100,145)
  14. color("yellow")
  15. begin_fill()
  16. forward(150)
  17. left(120)
  18. forward(150)
  19. left(120)
  20. forward(150)
  21. end_fill()
  22.  
  23. done()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement