We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c3e858 commit a4153a4Copy full SHA for a4153a4
Third/third.py
@@ -0,0 +1,35 @@
1
+from turtle import *
2
+import colorsys
3
+speed(8)
4
+hideturtle()
5
+bgcolor('black')
6
+tracer(5)
7
+width(2)
8
+h=0.001
9
+
10
+for i in range(100):
11
+ color(colorsys.hsv_to_rgb(h,1,1))
12
+ forward(100)
13
+ left(60)
14
15
+ right(120)
16
+ circle(50)
17
+ left(240)
18
19
+ h+=0.02
20
21
22
+ right(60)
23
24
+ left(120)
25
+ circle(-50)
26
+ right(240)
27
28
29
30
31
32
+ left(2)
33
34
35
+done()
0 commit comments