# Créé par wbrigitte, le 03/01/2022 en Python 3.2 from turtle import * from random import * speed(0) hideturtle() R=300 up() goto(0,R) down() pensize(5) liste=['grey', 'orange','yellow','pink','cyan','green','blue','pink','violet','purple','gold','white','wheat','red'] color(liste[randint(0,len(liste)-1)] , liste[randint(0,len(liste)-1)]) setheading(180) begin_fill() circle(R,360) end_fill() up() home() down() while R>50: color(liste[randint(0,len(liste)-1)] , liste[randint(0,len(liste)-1)]) begin_fill() circle(R,60) left(120) circle(R,60) end_fill() left(10) R=R-1 done()