Draw a regular hexagon that have vertices connected to the center. Use for loop to draw this shape. Source Code:
Draw a regular hexagon that have vertices connected to the center. Use for loop to draw this shape. Source Code:
Draw a hex star as shown with Python and Turtle. Practice using loop to draw this shape.
The following red cross with Python and Turtle. You need to fill it with a color. Source Code:
Draw the following spiral with hexagon shape. In each loop, increase the forward length and turn slightly less than 60 degrees. Source Code:
Draw the following spiral with pentagon shape. In each loop, increase the forward length and turn slightly less than 72 degrees. Source Code:
Draw the following spiral with square shape. In each loop, increase the forward length and turn slightly less than 90 degrees. Source Code:
Draw the following spiral with triangle shape. In each loop, increase the forward length and turn slightly less than 120 degrees. Source Code:
Knowing how to draw a football shape, draw a sixteen petal flower with loop and custom function. Code:
Draw 20 half circles to form a circle.
Use loop to draw a line of half circles. Check out drawing just one half circle project.