Skip to content

Commit 6b03ddb

Browse files
authored
Add files via upload
1 parent eed01aa commit 6b03ddb

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import turtle
2+
t = turtle.Turtle()
3+
t.speed(10)
4+
5+
colors = ['red', 'orange', 'yellow', 'blue',
6+
'green', 'indigo', 'violet']
7+
8+
turtle.bgcolor('black')
9+
10+
for i in range(36):
11+
t.color(colors[i%7])
12+
t.circle(100)
13+
t.right(10)
14+
turtle.done()

0 commit comments

Comments
 (0)