Skip to content

Commit 81c5a61

Browse files
feat:added file
1 parent 4030e6d commit 81c5a61

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

DESIGN.py

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
import turtle
2+
import colorsys
3+
4+
5+
t = turtle.Turtle()
6+
s = turtle.Screen()
7+
s.bgcolor("black")
8+
t.speed(0)
9+
n = 36
10+
h = 0
11+
12+
for i in range(460):
13+
c= colorsys.hsv_to_rgb(h,1,0.9)
14+
h+= 1/n
15+
t.color(c)
16+
t.left(145)
17+
for j in range (5):
18+
t.forward(300)
19+
t.left(150)

0 commit comments

Comments
 (0)