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