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 Three SpokesThree Spokes 03/23/201903/23/2019 | J & J Coding AdventureJ & J Coding Adventure | 0 Comment Draw the following shape. You may need to use following functions: penup(), pendown(), setheading(), forward(), goto(). 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 Three Tilted SquaresThree Tilted Squares 02/26/201902/26/2019 | J & J Coding AdventureJ & J Coding Adventure | 0 Comment Draw the following shape with 3 tilted squares. READ MOREREAD MORE
Three SpokesThree Spokes 03/23/201903/23/2019 | J & J Coding AdventureJ & J Coding Adventure | 0 Comment Draw the following shape. You may need to use following functions: penup(), pendown(), setheading(), forward(), goto(). 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
Three Tilted SquaresThree Tilted Squares 02/26/201902/26/2019 | J & J Coding AdventureJ & J Coding Adventure | 0 Comment Draw the following shape with 3 tilted squares. READ MOREREAD MORE
for i in range(6):
turtle.fd(100)
turtle.left(60)