Guest User

Untitled

a guest
Feb 18th, 2019
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. import turtle
  2.  
  3. josh = turtle.Turtle()
  4.  
  5. for i in range(1,5):
  6. print(i)
  7. josh.forward(100)
  8. josh.left(90)
  9.  
  10. turtle.done()
Add Comment
Please, Sign In to add comment