#FivePointStar.py
from turtle import *
pensize(5)
pencolor('green')
fillcolor('red')
begin_fill()
while True:
fd (200)
right (144)
if abs(pos())<1:
break
end_fill()
#FivePointStar.py
from turtle import *
pensize(5)
pencolor('green')
fillcolor('red')
begin_fill()
while True:
fd (200)
right (144)
if abs(pos())<1:
break
end_fill()