Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import turtle
- t = turtle.Pen()
- t.shape('turtle')
- t.speed(10)
- t.left(90)
- x = 1
- while x <= 6:
- t.circle(-50, 180, 100)
- t.circle(-10, 180, 100)
- x += 1
- turtle.exitonclick()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement