Commit 1e23a1d9 by BellCodeEditor

save project

parent 0cd1bbcd
Showing with 24 additions and 8 deletions
...@@ -7,13 +7,29 @@ pen.pendown() ...@@ -7,13 +7,29 @@ pen.pendown()
pen.pencolor("red") pen.pencolor("red")
pen.pensize(1) pen.pensize(1)
pen.lt(45) pen.lt(45)
pen.fd(100) while True:
pen.circle(50,180) len1=60
pen.rt(90) pen.pendown()
pen.circle(50,180) pen.fd(len1*5)
pen.fd(100) pen.circle(len1,180)
pen.penup() pen.rt(90)
pen.goto(100,-100) pen.circle(len1,180)
pen.write("你好呀\n我很好你是SB\n一起来c吧",font=("宋体",20,"normal")) pen.fd(len1*5)
pen.penup()
pen.goto(100,-100)
pen.write("你好呀\n我很好\n一起来玩吧",font=("宋体",20,"normal"))
pen.hideturtle() pen.hideturtle()
turtle.done() turtle.done()
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