Advertisement
calcpage

CSH2012 turtles.py

Mar 19th, 2013
236
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.14 KB | None | 0 0
  1. #!/usr/bin/python
  2. import turtle
  3. wn = turtle.Screen()
  4. alex = turtle.Turtle()
  5. alex.forward(50)
  6. alex.left(90)
  7. alex.forward(30)
  8.  
  9. wn.mainloop()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement