Commit f0d05732 by BellCodeEditor

save project

parent 07858a54
Showing with 210 additions and 0 deletions
import turtle
screen=turtle.Screen()
screen.bgcolor("light bule")
pen=turtle.Pen()
pen.write("kashxk",font=("Times","20","normal"))
pen.hideturtle()
def lov(len):
pen.left(45)
pen.forward(2*len)
pen.circle(len,180)
pen.right(90)
pen.circle(len,180)
pen.forward(2*len)
len=screen.textinput("提示","多大爱心")
love=int(len)
lov(love)
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