Open In App

Python – Draw Hexagon Using Turtle Graphics

In this article, we will learn how to make a Hexagon using Turtle Graphics in Python. For that lets first know what is Turtle Graphics.

Turtle graphics

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 in the turtle library.The turtle module can be used in both object-oriented and procedure-oriented ways.



Some of the commonly used methods are:

Approach –

Below is the python implementation of above approach.






# import the turtle modules
import turtle
 
# Start a work Screen
ws = turtle.Screen()
 
# Define a Turtle Instance
geekyTurtle = turtle.Turtle()
 
# executing loop 6 times for 6 sides
for i in range(6):
 
    # Move forward by 90 units
    geekyTurtle.forward(90)
 
    # Turn left the turtle by 300 degrees
    geekyTurtle.left(300)

 
 

Output:

Turtle Making Hexagon

 

Article Tags :