from turtle import * speed(0) pensize(20) def fond(): penup() hauteur = -110 goto(-160,-110) pendown() while hauteur != 110: color(round(239), round(200), round(209)) forward(320) hauteur+=17 goto(160, hauteur) goto(-160, hauteur) fond()
Create, edit, and import your Python scripts
from turtle import * speed(0) pensize(20) def fond(): penup() hauteur = -110 goto(-160,-110) pendown() while hauteur != 110: color(round(239), round(200), round(209)) forward(320) hauteur+=17 goto(160, hauteur) goto(-160, hauteur) fond()