Advertisement
Guest User

Untitled

a guest
Apr 28th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.13 KB | None | 0 0
  1. import turtle
  2.  
  3. turtle.color('red')
  4. turtle.forward(100)
  5. turtle.right(90)
  6. turtle.color('blue')
  7. turtle.forward(100)
  8.  
  9. turtle.done()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement