Commit ed9ef30a by BellCodeEditor

save project

parent a50ceeec
Showing with 24 additions and 0 deletions
import turtle
screen=turtle.Screen()
l=screen.textinput("提示","你想要多大的爱心?")
len=int(l)
screen.bgcolor("light blue")
pen=turtle.Pen()
pen.up()
pen.goto(100,0)
pen.write("静夜思\n 李白\n 床前明月光,\n疑是地上霜。\n 举头望明月,\n 低头思故乡。",font=("Times",10,"normal"))
pen.goto(0,0)
pen.down()
pen.pensize(7)
pen.pencolor("red")
pen.left(45)
pen.forward(len*2)
pen.circle(len,180)
pen.right(90)
pen.circle(len,180)
pen.forward(len*2)
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