snowden_web

Untitled

Sep 18th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. from turtle import *
  2. color('red', 'yellow')
  3. begin_fill()
  4. while True:
  5. forward(200)
  6. left(170)
  7. if abs(pos()) < 1:
  8. break
  9. end_fill()
  10. done()
Add Comment
Please, Sign In to add comment