View on GitHub

python-for-kids

Learning and exercise content on Python for Kids

Turtle - Flower with Circle

The options in Turtle is endless. You can have more fun as you explore. Here are few.

Drawing many circle,

import turtle

turtle.color("red", "yellow")
turtle.begin_fill()

for i in range(18):
    turtle.circle(120)
    turtle.right(20)

turtle.end_fill()
turtle.done()

Outcome

18 Circles


Next: Day 25 : Turtle - Pattern with Rectangle

Back to Index