We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81e3f10 commit c619bf9Copy full SHA for c619bf9
1 file changed
Fifth/fifth.py
@@ -0,0 +1,18 @@
1
+import turtle
2
+
3
+turtle.bgcolor("black")
4
+turtle.speed(60)
5
+turtle.hideturtle()
6
7
+Colors = ["yellow", "red", "yellow", "red"]
8
9
+for i in range (120):
10
+ for c in Colors:
11
+ turtle.color(c)
12
+ turtle.circle(100-i, 100)
13
+ turtle.lt(90)
14
15
+ turtle.rt(60)
16
+ turtle.end_fill()
17
18
+turtle.mainloop()
0 commit comments