Commit 73c6425e by BellCodeEditor

save project

parent 07858a54
Showing with 26 additions and 0 deletions
# 利用write()帮助悟空给诺依回信吧~
import turtle
screen=turtle.Screen()
screen.bgcolor("pink")
pen=turtle.Pen()
pen.penup()
pen.goto(100,-100)
pen.write("呐,你要的心心~",font=("Times",20,"normal"))
pen.pensize(7)
pen.pencolor("red")
pen.goto(0,0)
pen.pendown()
len=screen.textinput("往下看♪(・ω・)ノ","你想要多大的心心吖~")
lovesize=float(len)
pen.fillcolor("red")
pen.begin_fill()
pen.left(45)
pen.forward(lovesize*2)
pen.circle(lovesize,180)
pen.right(90)
pen.circle(lovesize,180)
pen.forward(lovesize*2)
pen.hideturtle()
pen.end_fill()
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