Draw a car using Turtle in Python Last Updated : 12 Jan, 2022 Comments Improve Suggest changes Like Article Like Report Prerequisite: Turtle module, Drawing Shapes There are many modules in python which depict graphical illustrations, one of them is a turtle, it is an in-built module in Python, which lets the user control a pen(turtle) to draw on the screen(drawing board). It is mostly used to illustrate figures, shapes, designs, etc. In this article, we will learn how to draw a Car using the turtle module. To draw a car in Python using the Turtle module: We are going to create different shapes using the turtle module in order to illustrate a car.Tyres can be drawn using the circle() function.The upper body can be thought of as a rectangle.The roof and windows are similar to a trapezoid.Overlapping all the above shapes in particular positions will illustrate a car. Let’s try to understand it better with the help of the below program: Python3 #Python program to draw car in turtle programming # Import required library import turtle car = turtle.Turtle() # Below code for drawing rectangular upper body car.color('#008000') car.fillcolor('#008000') car.penup() car.goto(0,0) car.pendown() car.begin_fill() car.forward(370) car.left(90) car.forward(50) car.left(90) car.forward(370) car.left(90) car.forward(50) car.end_fill() # Below code for drawing window and roof car.penup() car.goto(100, 50) car.pendown() car.setheading(45) car.forward(70) car.setheading(0) car.forward(100) car.setheading(-45) car.forward(70) car.setheading(90) car.penup() car.goto(200, 50) car.pendown() car.forward(49.50) # Below code for drawing two tyres car.penup() car.goto(100, -10) car.pendown() car.color('#000000') car.fillcolor('#000000') car.begin_fill() car.circle(20) car.end_fill() car.penup() car.goto(300, -10) car.pendown() car.color('#000000') car.fillcolor('#000000') car.begin_fill() car.circle(20) car.end_fill() car.hideturtle() Output: Comment More infoAdvertise with us Next Article Draw a car using Turtle in Python P pulkitagarwal03pulkit Follow Improve Article Tags : Python Python-turtle Practice Tags : python Similar Reads Draw Circle in Python using Turtle Turtle graphics is an engaging way to learn Python programming by visualizing geometric shapes. The turtle module lets you control a turtle to draw lines and shapes on the screen, making it an ideal tool for beginners. Below, we'll explore how to draw circles and create more complex patterns like ta 2 min read Draw Chess Board Using Turtle in Python Prerequisite: Turtle Programming Basics Turtle is an inbuilt module in Python. It provides drawing using a screen (cardboard) and turtle (pen). To draw something on the screen, we need to move the turtle (pen). To move turtle, there are some functions i.e forward(), backward(), etc. For drawing Ches 2 min read Draw a Flower using Turtle in Python We are given the task of drawing a flower using Turtle Graphics in Python. Our goal is to create a design that looks like a flower with multiple petals arranged in a circular pattern. We will do this by using loops to repeat the petal shape and turtle commands to draw and rotate the petals, forming 3 min read Draw Ellipse Using Turtle in Python Prerequisite: Turtle Programming Basics Turtle is an inbuilt module in Python. It provides drawing using a screen (cardboard) and turtle (pen). To draw something on the screen, we need to move the turtle (pen). To move turtle, there are some functions i.e forward(), backward(), etc. Approach: The fo 2 min read Draw a Hut using turtle module in Python Turtle is a inbuilt module in Python, which has many functions like forward(), backward(), right() and left() etc. You can draw a hut on the screen just by using the turtle module in Python. In this article, we will create a hut using the turtle module. Approach: Import turtleSet the background colo 2 min read Like