At Westonci.ca, we provide reliable answers to your questions from a community of experts. Start exploring today! Explore a wealth of knowledge from professionals across different disciplines on our comprehensive platform. Get immediate and reliable solutions to your questions from a community of experienced professionals on our platform.

What is the code for drawing a hexagon on python programming?

Sagot :

Answer:

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:

forward(length): moves the pen in the forward direction by x unit.

backward(length): moves the pen in the backward 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.

penup(): stop drawing of the turtle pen.

pendown(): start drawing of the turtle pen.

Approach –

Define an instance for turtle.

For a hexagon execute a loop 6 times.

In every iteration move turtle 90 units forward and move it left 300 degrees.

This will make up Hexagon .

Below is the python implementation of above approach.