Commit c2660c5a by BellCodeEditor

auto save

parent 0c01b183
Showing with 15 additions and 14 deletions
...@@ -9,18 +9,19 @@ pen.up() ...@@ -9,18 +9,19 @@ pen.up()
pen.goto(100,-300) pen.goto(100,-300)
pen.down() pen.down()
pen.write("你好,\nSB诺伊\n,我会用python\n写字了!!!SBSB",font=("黑体",25,"normal")) pen.write("你好,\nSB诺伊\n,我会用python\n写字了!!!SBSB",font=("黑体",25,"normal"))
pen.color("red") pen1.color("red")
pen.fillcolor("red") pen1.fillcolor("red")
pen.begin_fill() pen1.begin_fill()
pen.pensize(30) l=60
pen.up() pen1.pensize(30)
pen.goto(-200,-100) pen1.up()
pen.down() pen1.goto(-200,-100)
pen.lt(45) pen1.down()
pen.fd(200) pen1.lt(45)
pen.circle(100,180) pen1.fd(l*2)
pen.rt(90) pen1.circle(l,180)
pen.circle(100,180) pen1.rt(90)
pen.fd(200) pen1.circle(l,180)
pen.end_fill() pen1.fd(l*2)
pen1.end_fill()
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