Files
INTUIA/Programa final/Python-3.10.15/Doc/includes/turtle-star.py
T
2026-03-15 13:27:50 +00: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()