Commit e9ecc130 by BellCodeEditor

save project

parent 8a24a025
Showing with 20 additions and 0 deletions
import turtle
screen = turtle.Screen()
pen = turtle.Pen()
screen.bgcolor("pink")
pen.color("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("送你一个小心心.",font=("Times",30,"normal"))
pen.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