Commit ef1d2df4 by BellCodeEditor

save project

parent 07858a54
Showing with 25 additions and 0 deletions
import turtle
x=200
pen=turtle.Pen()
pen1=turtle.Pen()
pen.pensize(10)
pen.pencolor("red")
pen1.penup()
pen1.goto(100,-100)
pen1.write("你好,\n诺依",font=("Times",50,"normal"))
pen.left(45)
pen.forward(x)
pen.circle(1/2*x,180)
pen.right(90)
pen.circle(1/2*x,180)
pen.forward(x)
screen=turtle.Screen()
screen.bgcolor("light blue")
pen.hideturtle()
pen1.hideturtle()
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