Commit 3543170d by BellCodeEditor

save project

parent 31b840b0
Showing with 5 additions and 4 deletions
...@@ -4,12 +4,13 @@ screen = turtle.Screen() ...@@ -4,12 +4,13 @@ screen = turtle.Screen()
screen.bgcolor("light blue") screen.bgcolor("light blue")
t.pensize(10) t.pensize(10)
t.pencolor("red") t.pencolor("red")
len = 60
t.left(45) t.left(45)
t.forward(100) t.forward(len*2)
t.circle(50,180) t.circle(len,180)
t.right(90) t.right(90)
t.circle(50,180) t.circle(len,180)
t.forward(100) t.forward(len*2)
t.penup() t.penup()
t.goto(100,-100) t.goto(100,-100)
t.pendown() t.pendown()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment