Найти в Дзене
1 подписчик

Розноцветные-лепестки.

from turtle import*
import colorsys as cs
setup(800,800)
speed(10)
hideturtle()
v = 25
n = 15
for j in range(v):
for i in range(n):
begin_fill()
color(cs.hsv_to_rgb(i/n,j/v,0.8))
fillcolor(cs.hsv_to_rgb(i/n,j/v,1))
rt(90)
fd(100)
circle(200-j*4,90)
lt(90)
fd(100)
circle(200-j*4,90)
rt(180)
fd(100)
circle(50,24)

done()
Около минуты