Commit a19c42cf by BellCodeEditor

save project

parent 3651fd09
Showing with 16 additions and 6 deletions
import turtle
a=turtle.Pen()
a.pendown()
a.write("你\n","center",font=("Times",50,"normal"))
a.hideturtle()
a.done()
\ No newline at end of file
turtle.write("你","center",font=("Times",50,"normal"))
b=turtle.Pen()
b.color("red")
b.pensize(4)
b.penup()
b.goto(0,0)
b.pendown()
b.left(45)
b.forward(50)
b.circle(25,180)
b.right(90)
b.circle(25,180)
b.forward(50)
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