Guest User

Untitled

a guest
May 24th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.18 KB | None | 0 0
  1. #!/usr/bin/python
  2. # -*- coding: iso-8859-1 -*-
  3.  
  4. from turtle import *
  5.  
  6. up()
  7. goto(-200,0)
  8. down()
  9. color('red')
  10.  
  11. for i in range(20):
  12.     forward(400)
  13.     left(162)
  14.  
  15. done()
Add Comment
Please, Sign In to add comment