This commit is contained in:
2026-03-11 23:19:48 +00:00
parent 18ef09f8c0
commit 55c2a35280
3 changed files with 120 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
# #important things# #
import turtle
t = turtle
t.bgcolor("black")
t.color("red")
t.fillcolor("blue")
t.shape("turtle")
# #drawing part one# #
u = 0
while u < 4:
t.begin_fill()
t.circle(500)
t.end_fill()
t.begin_fill()
t.circle(250)
t.end_fill()
t.begin_fill()
t.circle(125)
t.end_fill()
u = u + 1
t.rt(90)
# #drawing part two
# #end# #
t.hideturtle()
t.done()