Commit 194a8fbb by BellCodeEditor

save project

parent 3a52fbaa
Showing with 19 additions and 0 deletions
import turtle
#创建粉红画布
screen=turtle.Screen()
screen.bgcolor("pink")
#设置爱心大小
len=screen.textinput("标题","你想要多大的爱心")
lovesize=int(len)
#画爱心
pen=turtle.Pen()
pen.left(45)
pen.forward(lovesize*2)
pen.circle(lovesize,180)
pen.right(90)
pen.circle(lovesize,180)
pen.forward(lovesize*2)
#隐藏画笔并保存画布
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