turtle001.py

# =========================================================
# draw hexagon
#
# Turtle doc: docs.python.org/3.2/library/turtle.html
# =========================================================

import turtle as t

for i in range(6):
    t.forward(100)
    t.right(60)

t.mainloop()