Batch 2
This commit is contained in:
33
whatever this turns out to be.py
Normal file
33
whatever this turns out to be.py
Normal 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()
|
||||
Reference in New Issue
Block a user