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 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 Right TriangleRight Triangle 02/26/201902/26/2019 | J & J Coding AdventureJ & J Coding Adventure | 0 Comment Draw a right triangle. You can use goto(x,y) function along with forward(d) and left(angle). Related Projects READ MOREREAD MORE PentagramPentagram 02/26/201902/26/2019 | J & J Coding AdventureJ & J Coding Adventure | 0 Comments Draw a five sided star called Pentagram. 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
Right TriangleRight Triangle 02/26/201902/26/2019 | J & J Coding AdventureJ & J Coding Adventure | 0 Comment Draw a right triangle. You can use goto(x,y) function along with forward(d) and left(angle). Related Projects READ MOREREAD MORE
PentagramPentagram 02/26/201902/26/2019 | J & J Coding AdventureJ & J Coding Adventure | 0 Comments Draw a five sided star called Pentagram. READ MOREREAD MORE
for i in range(6):
turtle.fd(100)
turtle.left(60)