Commit b1e4b955 by BellCodeEditor

save project

parent eee30afe
Showing with 7 additions and 7 deletions
...@@ -4,19 +4,18 @@ screen=turtle.Screen() ...@@ -4,19 +4,18 @@ screen=turtle.Screen()
screen.bgcolor("light blue") screen.bgcolor("light blue")
pen=turtle.Pen() pen=turtle.Pen()
pen.penup() pen.penup()
pen.goto(-100,0) pen.goto(100,-100)
pen=turtle.Pen()
pen.write("hi,诺伊,\n好久不见",font=("Times",40,"normal")) pen.write("hi,诺伊,\n好久不见",font=("Times",40,"normal"))
pen.hideturtle() pen.hideturtle()
turtle.done()
penl=turtle.Pen() penl=turtle.Pen()
penl.pensize(5) penl.pensize(5)
penl.pencolor("red") penl.pencolor("red")
penl.left(45) penl.left(45)
penl.forward(100) len=60
penl.circle(50,180) penl.forward(2*len)
penl.circle(len,180)
penl.right(90) penl.right(90)
penl.circle(50,180) penl.circle(len,180)
penl.forward(100) penl.forward(2*len)
penl.hideturtle() penl.hideturtle()
turtle.done() turtle.done()
\ No newline at end of file
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