Advertisement
kealeydodds

Untitled

Sep 15th, 2019
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. #Draws a 2d shape using an algorithm
  2.  
  3. from turtle import Turtle
  4.  
  5. t = Turtle()
  6.  
  7. for x in range(7):
  8. t.forward(50)
  9. t.right(50)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement