# Créé le 25/09/2016 avec EduPython from lycee import * from turtle import * bgcolor('black') pencolor(1,1,0.4) pensize(2) speed(10) espace=10 taille=10 for i in range(30): forward(taille) right(90) forward(taille) right(90) taille=taille+espace mainloop()