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 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 Vertical HexagonVertical Hexagon 03/13/201903/13/2019 | J & J Coding AdventureJ & J Coding Adventure | 0 Comment Draw a vertical hexagon as shown here. Related Project READ MOREREAD MORE Two Circles 2Two Circles 2 08/18/202008/18/2020 | J & J Coding AdventureJ & J Coding Adventure | 0 Comment Draw two circles as shown without lifting the pen. 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
Vertical HexagonVertical Hexagon 03/13/201903/13/2019 | J & J Coding AdventureJ & J Coding Adventure | 0 Comment Draw a vertical hexagon as shown here. Related Project READ MOREREAD MORE
Two Circles 2Two Circles 2 08/18/202008/18/2020 | J & J Coding AdventureJ & J Coding Adventure | 0 Comment Draw two circles as shown without lifting the pen. READ MOREREAD MORE
for i in range(6):
turtle.fd(100)
turtle.left(60)