Skip to content

Commit f61d0ef

Browse files
author
DirDraggo
committed
added 2.12.14
1 parent 3502998 commit f61d0ef

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
"""
2+
Draws 4 circles
3+
"""
4+
speed(0)
5+
radius = 125
6+
penup()
7+
right(90)
8+
forward(100)
9+
left(90)
10+
for i in range(4): ## Draws a circle with radius and color_choice color. repeats 4 times
11+
pendown()
12+
radius = radius - 25
13+
color_choice = input("Color of the circle?: ")
14+
color(color_choice)
15+
begin_fill()
16+
circle(radius)
17+
end_fill()
18+
penup()
19+
left(90)
20+
forward(25)
21+
right(90)

0 commit comments

Comments
 (0)