# =========================================================
# Example from the web
# =========================================================
from turtle import *
# this "for" loop will repeat these functions 500 times
for i in range(500):
forward(i)
left(91)