Files
Original-Pasha-Code/whatever this turns out to be.py
2026-03-11 23:19:48 +00:00

34 lines
446 B
Python

# #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()