# Créé par ggodel, le 03/01/2022 avec EduPython from turtle import * R=300 hideturtle() up() goto(0,R) down() speed(0) bgcolor('black') listef=['orange','red','gold'] pensize(5) pencolor('black') seth(180) begin_fill() color('white') circle(R) end_fill() up() home() down() c=0 while R>50: for i in range(6): R=R-1 #pencolor(listec[randint(0,len(listec)-1)]) color('black',listef[c]) c=c+1 if c>2: c=0 begin_fill() circle(R,60) lt(120) circle(R,60) end_fill() lt(60) lt(5) done()