cueselocks

spiral_thing

Jul 24th, 2025
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.16 KB | None | 0 0
  1. import turtle
  2. screen = turtle.Screen()
  3. bob = turtle.Turtle()
  4.  
  5. bob.speed(0)
  6.  
  7. for i in range(10000):
  8.     bob.forward(i/50)
  9.     bob.left(i)
  10.  
  11. screen.exitonclick()
Advertisement
Add Comment
Please, Sign In to add comment