Draw Diamond shape using Turtle graphics in Python Last Updated : 11 Jun, 2021 Comments Improve Suggest changes Like Article Like Report In this article, we are going to learn how to draw the shape of a Diamond using turtle graphics in Python. Turtle graphics: forward(length): moves the pen in the forward direction by x unit.right(angle): rotate the pen in the clockwise direction by an angle x.left(angle): rotate the pen in the anticlockwise direction by an angle x. Approach: Import the turtle modules.Define an instance for the turtle.First, make the bigger triangleThen make three lines inside the bigger triangleThen make 4 small trianglesThen make one line above these four triangles Below is the Python implementation of the above approach: Python3 # python program # import for turtle module import turtle # defining instance of turtle pen = turtle.Turtle() wn = turtle.Screen() # this is for bigger triangle pen.left(60) pen.forward(200) pen.left(120) pen.forward(200) pen.left(120) pen.forward(200) pen.left(150) # this for making three lines # inside the bigger triangle pen.forward(174) pen.backward(174) pen.left(16.5) pen.forward(180) pen.backward(180) pen.right(31.5) pen.forward(180) pen.right(75) # this is for making upper triangle1 pen.forward(53) pen.left(120) pen.forward(50) pen.left(120) pen.forward(50) # this is for making upper triangle2 pen.right(120) pen.forward(50) pen.left(120) pen.forward(50) # this is for making upper triangle3 pen.right(120) pen.forward(50) pen.left(120) pen.forward(50) # this is for making upper triangle1 pen.right(120) pen.forward(50) pen.left(120) pen.forward(50) pen.left(180) pen.forward(50) # this is for making line above all 4 small triangle pen.left(300) pen.forward(160) Output: Comment More infoAdvertise with us Next Article Draw Diamond shape using Turtle graphics in Python K kashishmishra9911 Follow Improve Article Tags : Python Python-turtle Practice Tags : python Similar Reads Draw Rainbow using Turtle Graphics in Python Turtle is an inbuilt module in Python. It provides: Drawing using a screen (cardboard).Turtle (pen). To draw something on the screen, we need to move the turtle (pen), and to move the turtle, there are some functions like the forward(), backward(), etc. Prerequisite: Turtle Programming Basics Draw 2 min read Draw Panda Using Turtle Graphics in Python Turtle is an inbuilt module in Python. It provides: Drawing using a screen (cardboard).Turtle (pen). To draw something on the screen, we need to move the turtle (pen), and to move the turtle, there are some functions like the forward(), backward(), etc. Prerequisite: Turtle Programming Basics Draw 2 min read Draw Heart Using Turtle Graphics in Python Python's Turtle Graphics module provides a simple way to create drawings and shapes using a virtual pen (called a "turtle") that can move across the screen. In this tutorial, we will learn how to draw a heart shape using Turtle Graphics and customize it with colors and text. Before proceeding, you s 2 min read Draw Graph Grid 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: Follow 2 min read Python - Draw "GFG" logo using Turtle Graphics Prerequisites: Turtle Programming in Python Turtle is a Python feature like a drawing board, which let us command a turtle to draw all over it! We can use many turtle functions which can move the turtle around. Turtle comes into the turtle library. The turtle module can be used in both object-orient 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 a Sine wave using Turtle in Python In this article, we will draw a sinewave using a turtle in Python. Turtle is one of the modules in python, it is a graphic that refers to controlling a graphical entity in a graphics window with x, and y coordinates. It is a toolkit that provides a simple and enjoyable way to draw pictures and shape 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 Turtle Race Game Using Python - Turtle Graphics Library Turtle graphics is a popular way to introduce programming concepts to beginners. It's a fun and interactive module in Python that lets you create simple drawings and animations using a "turtle" that moves around the screen. In this tutorial, we'll create an exciting turtle race game where you can be 4 min read Draw a car using Turtle in Python 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, sha 2 min read Like