# Créé par nelissaoui, le 03/01/2022 en Python 3.2 from turtle import * from random import * R=300 hideturtle() up() goto(0,R) down() speed(0) width(20) pencolor("tan") pensize(4) liste=["pink","orange","salmon","red","black"] color(liste[randint(0,len(liste)-1)], liste[randint(0, len(liste)-1)]) setheading(180) begin_fill() circle(R) end_fill() goto(0,0) for i in range(1,13): for j in range(1,35): for k in range(1,4): 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(60) lt(25) R=R-30 done()