Files
MYSOPHAL/api.dsi.sophal.dz/hr_tickets/Python-3.9.6/Doc/includes/turtle-star.py
2025-08-07 13:15:31 +01:00

11 lines
155 B
Python

from turtle import *
color('red', 'yellow')
begin_fill()
while True:
forward(200)
left(170)
if abs(pos()) < 1:
break
end_fill()
done()