Commit bf4aae19 by BellCodeEditor

save project

parent 4b8f2a18
Showing with 102 additions and 0 deletions
import turtle
sc=turtle.Screen()
sc.bgcolor("light blue")
pen=turtle.Pen()
pen.pensize(50)
pen.pencolor("red")
pen.begin_fill()
pen.lt(45)
pen.fd(100)
pen.circle(50,180)
pen.rt(90)
pen.circle(50,180)
pen.fd(100)
pen.penup()
pen.lt(45)
pen.fd(150)
pen.end_fill()
pen.write("你好,\n儿子",font=("Times",30,"normal"))
pen.hideturtle()
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