vgh
from turtle import * from random import * from kandinsky import * fill_rect(0,0,320,222,(0,0,0)) hideturtle() speed(0) hideturtle() colormode(255) def etoile(): set_pixel(randint(0,320), randint(0,222), (255,255,255)) def explode(x, y, color): pencolor(color) penup() goto(x, y) pendown() size = randint(10,42) for i in range(36): forward(size) backward(size) right(10) for i in range(50): etoile() for i in range(7): explode(randint(-142, 142), randint(-90, 90), (randint(0,255), randint(0,255), randint(0,255)))