Monday, November 24, 2025
HomeLanguagesDraw an Olympic Symbol in Python using Turtle

Draw an Olympic Symbol in Python using Turtle

Prerequisites: Turtle Programming in Python

The Olympic rings are five interlaced rings, colored blue, yellow, black, green, and red on a white field. As shown in the below image.

Approach:

  • import Turtle module
  • set the thickness for each ring
  • draw each circle with specific coordinates

Below is the implementation.

Python3




import turtle
 
# object tr for turtle
tr = turtle.Turtle()
 
# set thickness for each ring
tr.pensize(5)
 
tr.color("blue")
tr.penup()
tr.goto(-110, -25)
tr.pendown()
tr.circle(45)
 
tr.color("black")
tr.penup()
tr.goto(0, -25)
tr.pendown()
tr.circle(45)
 
tr.color("red")
tr.penup()
tr.goto(110, -25)
tr.pendown()
tr.circle(45)
 
tr.color("yellow")
tr.penup()
tr.goto(-55, -75)
tr.pendown()
tr.circle(45)
 
tr.color("green")
tr.penup()
tr.goto(55, -75)
tr.pendown()
tr.circle(45)


Output:

RELATED ARTICLES

Most Popular

Dominic
32410 POSTS0 COMMENTS
Milvus
97 POSTS0 COMMENTS
Nango Kala
6785 POSTS0 COMMENTS
Nicole Veronica
11932 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12000 POSTS0 COMMENTS
Shaida Kate Naidoo
6909 POSTS0 COMMENTS
Ted Musemwa
7168 POSTS0 COMMENTS
Thapelo Manthata
6865 POSTS0 COMMENTS
Umr Jansen
6852 POSTS0 COMMENTS