yazdmich

Phi spiral

Apr 19th, 2013
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. from turtle import *
  2. color('red', 'yellow')
  3. #begin_fill()
  4. a = 1.61803398875
  5. while True:
  6. speed(speed=0)
  7. forward(5)
  8. left(a)
  9. a = a + (a / a)
  10. done()
Advertisement
Add Comment
Please, Sign In to add comment