Skip to content

Commit e73bb40

Browse files
authored
Add files via upload
1 parent 042f87c commit e73bb40

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

draw.py

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
from turtle import *
2+
bgcolor("black")
3+
speed(0)
4+
hideturtle()
5+
6+
for i in range(50,400):
7+
color("red")
8+
circle(i)
9+
color("orange")
10+
circle(i*0.8)
11+
color("white")
12+
circle(i*0.6)
13+
right(3)
14+
15+
done()

0 commit comments

Comments
 (0)