DEBSOURCES
Skip Quicknav
sources / python3.5 / 3.5.3-1%2Bdeb9u1 / 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()