# Créé par CRIF, le 16/04/2019 en Python 3.2 from turtle import * from random import * speed(0) shape('triangle') colormode(255) up() goto(0,300) down() pensize(5) #color('red','yellow') color((randint(0,255),randint(0,255),randint(0,255)),(randint(0,255),randint(0,255),randint(0,255))) setheading(180) begin_fill() circle(300) end_fill() up() home() down() for i in range(12): #color('blue','green') #color('blue','red') color((randint(0,255),randint(0,255),randint(0,255)),(randint(0,255),randint(0,255),randint(0,255))) begin_fill() circle(300,60) lt(120) circle(300,60) end_fill() lt(90) hideturtle() done()