import turtle as t
t.shape("arrow")
t.bgcolor("black")
t.color("pink")
t.pensize(width=3)
t.speed(0)
n = 10
for x in range(n):
t.circle(100)
t.left(360/n)
t.exitonclick()
import turtle as t: This means t will mean turtle from now.
t.shape("arrow"): This means the shape of it will be arrow.
t.bgcolor("black"): This means that the color that they will use for background will be black.
t.color("pink"):This means that the circles out line will be pink.
t.pensize(width=3):The thickness of the pentool will be equal to 3.
t.speed(0): This means that the speed o f the drawing will be the fatest.
n = 10
for x in range(n):
t.circle(100)
t.left(360/n)
: This means that the circle's radius size will be 100 and for 10 times, it will move left 36 degrees to draw a circle and this process will repeat.
t.exitonclick(): This means that if you click it will exit the program.