# Generators ## Turtle ``` # turtle-example.py from turtle import * pencolor((255,0,0)) for i in range(4): forward(100) right(90) done() #EOF ```