Draw a hexagon with just forward and left functions.
Hexagon
Categories:
1 thought on “Hexagon”
Comments are closed.
Draw a hexagon with just forward and left functions.
Comments are closed.
for i in range(6):
turtle.fd(100)
turtle.left(60)