Flower Design code on February 14, 2023 Get link Facebook X Pinterest Email Other Apps from turtle import*import colorsysspeed(0)h=0.2bgcolor('black')pencolor('yellow')for i in range(70): c=colorsys.hsv_to_rgb(h,1,1) h+=0.2 fillcolor(c) begin_fill() circle(150-i,90) lt(20) lt(80) circle(150-i,90) rt(20) lt(5) end_fill()done() Comments
Comments
Post a Comment