Pythondex
Turtle Python Programs

Python Turtle Program To Draw Four Circles

Published October 23, 2023 by Jarvis Silva

In this tutorial I will show you how to draw four circles using python turtle, this python program will draw four circles in a square format so let’s see how to do it.

To create this python program we will use the turtle module, which allows us to draw graphics in python so before moving forward make sure you have turtle installed mostly it is installed but if you don’t have use below command to install:


pip install turtle

Python code To draw four circles in turtle


import turtle 
turtle.up()
turtle.goto(75,0)
turtle.down()

turtle.left(180)
turtle.circle(75,extent=90)
turtle.left(180)
turtle.circle(75,extent=90)
turtle.left(180)
turtle.circle(75,extent=90)
turtle.left(180)
turtle.circle(75)
turtle.left(180)
turtle.circle(75,extent=270)
turtle.left(180)
turtle.circle(75,extent=270)
turtle.left(180)
turtle.circle(75,extent=270)\

turtle.done()

Four circle drawing in python turtle

Also How To Draw a Half Circle In Python Turtle

As you can see we successfully drawn four circles using python, I hope you found this program intresting, do share it with your friends. Thank you for reading, Have a nice day 😊