from turtle import *

def side():
     forward(100)
     right(165)

for n in range(24):
   side()

Tkinter.mainloop()

