Advertisement
plarmi

work11_4

Jun 2nd, 2023
520
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.18 KB | None | 0 0
  1. import turtle
  2. t = turtle.Pen()
  3. t.shape('turtle')
  4. t.speed(10)
  5. t.left(90)
  6. x = 1
  7. while x <= 6:
  8.     t.circle(-50, 180, 100)
  9.     t.circle(-10, 180, 100)
  10.     x += 1
  11. turtle.exitonclick()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement