Advertisement
Guest User

Untitled

a guest
Jan 17th, 2013
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.37 KB | None | 0 0
  1. from turtle import *
  2. reset()
  3. a = 0
  4. while a <360:
  5.     a = a +1
  6.     forward(1)
  7.     left(1)
  8. a=0
  9. while a <450:
  10.     a+=1
  11.     forward(1)
  12.     right(1)
  13. left(90)
  14. forward(250)
  15. a=0
  16. while a <90:
  17.     a = a +1
  18.     forward(1)
  19.     left(1)
  20. left(90)
  21. forward(45)
  22. left(180)
  23. forward(45)
  24. left(90)
  25. a=0
  26. while a <90:
  27.     a = a +1
  28.     forward(1)
  29.     left(1)
  30. forward(250)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement