Hexagon 02/26/201902/26/2019 | J & J Coding AdventureJ & J Coding Adventure | 0 Comments | 2:34 am Categories: Difficulty Level 1 Draw a hexagon with just forward and left functions. Related Projects Tags: basics, geometry 1 thought on “Hexagon” for i in range(6): turtle.fd(100) turtle.left(60) Comments are closed. Post navigation PREVIOUS Previous post: A Beautiful HouseNEXT Next post: Right Triangle Related Post TrapezoidTrapezoid 02/26/201902/26/2019 | J & J Coding AdventureJ & J Coding Adventure | 0 Comment Draw a trapezoid shape. You can use goto(x,y) function together with foward() and left() functions. READ MOREREAD MORE Three DiamondsThree Diamonds 03/11/201903/11/2019 | J & J Coding AdventureJ & J Coding Adventure | 0 Comment Draw the following shape with three diamonds. READ MOREREAD MORE Pacman Shape with Python and TurtlePacman Shape with Python and Turtle 11/24/202111/24/2021 | JinshengJinsheng | 0 Comment Draw a pacman shape as shown. The opening angle of the mouth is 60 degrees. You can try to draw other opening angles. Hint: Start from the center, draw a READ MOREREAD MORE
TrapezoidTrapezoid 02/26/201902/26/2019 | J & J Coding AdventureJ & J Coding Adventure | 0 Comment Draw a trapezoid shape. You can use goto(x,y) function together with foward() and left() functions. READ MOREREAD MORE
Three DiamondsThree Diamonds 03/11/201903/11/2019 | J & J Coding AdventureJ & J Coding Adventure | 0 Comment Draw the following shape with three diamonds. READ MOREREAD MORE
Pacman Shape with Python and TurtlePacman Shape with Python and Turtle 11/24/202111/24/2021 | JinshengJinsheng | 0 Comment Draw a pacman shape as shown. The opening angle of the mouth is 60 degrees. You can try to draw other opening angles. Hint: Start from the center, draw a READ MOREREAD MORE
for i in range(6):
turtle.fd(100)
turtle.left(60)