Commit a19c42cf by BellCodeEditor

save project

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