Skip to content

Commit eaba6ea

Browse files
authored
Color_spiral.py
1 parent a2fc6fe commit eaba6ea

File tree

1 file changed

+52
-0
lines changed

1 file changed

+52
-0
lines changed

colour spiral.py

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
# import turtle
2+
3+
import turtle
4+
5+
# defining colors
6+
7+
colors = ['red', 'yellow', 'green', 'purple', 'blue', 'orange']
8+
9+
# setup turtle pen
10+
11+
t= turtle.Pen()
12+
13+
# changes the speed of the turtle
14+
15+
t.speed(10)
16+
17+
# changes the background color
18+
19+
turtle.bgcolor("black")
20+
21+
# make spiral_web
22+
23+
for x in range(200):
24+
25+
t.pencolor(colors[x%6]) # setting color
26+
27+
t.width(x/100 + 1) # setting width
28+
29+
t.forward(x) # moving forward
30+
31+
t.left(59) # moving left
32+
33+
turtle.done()
34+
35+
t.speed(10)
36+
37+
38+
turtle.bgcolor("black") # changes the background color
39+
40+
# make spiral_web
41+
42+
for x in range(200):
43+
44+
t.pencolor(colors[x%6]) # setting color
45+
46+
t.width(x/100 + 1) # setting width
47+
48+
t.forward(x) # moving forward
49+
50+
t.left(59) # moving left
51+
52+
turtle.done()

0 commit comments

Comments
 (0)