Advertisement
plarmi

work11_3

Jun 2nd, 2023
512
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.21 KB | None | 0 0
  1. import turtle
  2. t = turtle.Turtle()
  3. t.shape('turtle')
  4. t.left(90)
  5. n = 50
  6.  
  7. def butterfly(n):
  8.     t.circle(n)
  9.     t.circle(-n)
  10.  
  11. x = 1
  12. while x <= 20:
  13.     butterfly(n)
  14.     n += 5
  15.     x += 1
  16. turtle.exitonclick()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement