Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import turtle
- bob = turtle.Turtle()
- wn = turtle.Screen()
- bob.color("white")
- bob.speed(0)
- wn.bgcolor("black")
- x=1
- while x < 10000000:
- bob.forward(90)
- bob.left(89)
- bob.forward(1+x*2)
- x = x+.5
- turtle.done()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement