Skip to main content
Search
Search This Blog
Python Developer
Python Source Code
Share
Get link
Facebook
X
Pinterest
Email
Other Apps
October 26, 2021
turtle graphics design
from
turtle
import
*
import
colorsys
speed(
0
)
hideturtle()
pensize(
4
)
bgcolor(
'black'
)
hue =
0.0
for
i
in
range(
1
,
37
):
rt(
10
)
for
i
in
range(
1
,
5
):
color=colorsys.hsv_to_rgb(hue,
1
,
1
)
pencolor(color)
hue+=
0.005
fd(
200
)
rt(
90
)
done()
Comments
Popular Posts
May 08, 2021
Birthday patterns
July 08, 2021
Block Puzzle Jewel Game in Python
Comments
Post a Comment