Advertisement
plarmi

work10_5

May 25th, 2023 (edited)
617
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.20 KB | None | 0 0
  1. import turtle
  2. t = turtle.Turtle()
  3. t.shape('turtle')
  4. x = 1
  5. while True:
  6.     t.forward(100)
  7.     t.stamp()
  8.     t.backward(100)
  9.     t.right(360 / 12)
  10.     x += 1
  11.     if (x%12) == 1:
  12.         t.clear()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement