In this post, we will understand How to Draw overlap circles Spiral in Python Turtle graphic with examples. To use a Turtle library make sure it’s installed on the local system or else install it using the command “pip install PythonTurtle” once installed import in our program using import Turtle
import turtle
window = turtle.setup(width=550,height=600)
turtle.pensize(10)
turtle.speed(6)
colors=["olive","orange","yellow","green","blue","purple"]
turtle.speed(0)
for x in range(30):
turtle.color(colors[x % 6])
turtle.circle(5*x)
turtle.circle(-5*x)
turtle.left(x)
turtle.done()
Output
- How to Draw a Rainbow in Python Turtle
- Draw Square and rotated Square in Python Turtle
- How to create Start Spiral in Python Turtle
