DEBSOURCES
Skip Quicknav
sources / python3.11 / 3.11.2-6%2Bdeb12u6 / Doc / includes / turtle-star.py
12345678910
from turtle import * color('red', 'yellow') begin_fill() while True: forward(200) left(170) if abs(pos()) < 1: break end_fill() done()