boris-vlasenko

Untitled

Jan 28th, 2015
279
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. from turtle import *
  2. speed(10)
  3.  
  4. def triangle(a):
  5. down()
  6. fd(a)
  7. lt(120)
  8. fd(a)
  9. lt(120)
  10. fd(a)
  11. lt(150)
  12. up()
  13. fd(17)
  14. rt(30)
  15.  
  16. a = 300
  17. for i in range(10):
  18. triangle(a)
  19. a = a - 30
  20. mainloop()
Advertisement
Add Comment
Please, Sign In to add comment