Commit e21b7f7e by BellCodeEditor

auto save

parent 07858a54
Showing with 30 additions and 0 deletions
# 利用write()帮助悟空给诺依回信吧~
import turtle
pen=turtle.Pen()
pen.penup()
pen.goto(110,25)
pen.write("不客气,\n这么快就学\n会使用了,很棒!",font=("Times",25,"normal"))
pen.hideturtle()
pen1=turtle.Pen()
screen=turtle.Screen()
screen.bgcolor("pink")
len=screen.textinput("提示","你想要多大爱心呀?")
lovesize=int(len)
pen1.pensize(10)
pen1.left(45)
pen1.forward(2*lovesize)
pen1.circle(lovesize,180)
pen1.right(90)
pen1.circle(lovesize,180)
pen1.forward(2*lovesize)
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