Pythondex
Turtle Python Programs

Draw Audi Logo In Python

Last updated July 3, 2023 by Jarvis Silva

In this tutorial I will show you how to draw audi logo using python, Audi is one of the most famous car brand so today I have decided to draw it’s logo.

We will use the turtle module to create this python program, It is a GUI python library which can be used to draw anything from characters, cartoons, shapes and other objects.

Python Code To Draw Audi Logo


import turtle as t

t.pensize(5)
t.Screen().bgcolor("black")
t.pencolor("#fff")
t.speed(10) 

for i in range(4):
  t.penup()
  t.goto(i*70, 0)
  t.pendown()
  t.circle(50)

t.color("white")
t.penup()
t.goto(77, -40)
t.pendown()
t.hideturtle()
t.done()

Above is the code for drawing audi logo in turtle. Now to run this program you need to have python installed on your computer, If you don’t have then follow this guide: Install and setup python on your computer.

Now you have the code, but there is one last thing you need to do as I have said I have used the turtle library for this program so you might need to install it if you get any errors like turtle module not found.

Turtle comes pre-installed with python setup, but if you get any errors you can install it using the below command.


pip install turtle

So now you have everything setup and you are ready to run the program, so to run this program open a command prompt at your program folder location and paste the below command.


python filename.py

The above command will run the program and it will open a new window and it will start drawing audi logo and below is the finished drawing of audi logo.

Audi Logo Drawing In Python

As you can see, we successfully drew audi logo, I hope you were able to run this program successfully. 

Here are some more python drawing tutorials for you:

I hope you found what you were looking for from this tutorial, and if you want more python guides and tutorials like this, do join our Telegram channel for future updates.

Thanks for reading, have a nice day 🙂