Hi can anyone help finding the angle to draw different polygons shapes in this example
import turtle
wm = turtle.Screen()
alex = turtle.Turtle()
for i in range(5):
alex.left(216)
alex.forward(50)
wm.exitonclick()
Why do we use 216
--
https://mail.python.org/mailman/listinfo/python-list
