Guest User

Untitled

a guest
Feb 18th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. #Begin by showing turtle.
  2. import turtle
  3. turtle.showturtle()
  4. turtle.hideturtle()
  5.  
  6. #Draw the octagon.
  7. for x in range(8):
  8. turtle.forward(100)
  9. turtle.right(45)
Add Comment
Please, Sign In to add comment