Commit 36de690c by BellCodeEditor

auto save

parent e3f7e446
Showing with 27 additions and 6 deletions
import turtle
screen=turtle.Screen()
pen1=turtle.Pen()
pen1.penup()
pen1.goto(-100,0)
pen1.pendown()
pen1.pencolor("red")
pen1.pensize(5)
def love(len):
pen1.left(45)
pen1.forward(2*len)
pen1.circle(len,180)
pen1.right(90)
pen1.circle(len,180)
pen1.forward(2*len)
len=screen.textinput("提示","你想要多大的爱心?")
lovesize=int(len)
love(lovesize)
pen1=turtle.Pen()
pen1.pencolor("purple")
pen1.penup()
pen1.goto(-100,-100)
text=turtle.textinput("提示2","你想写什么?")
pen1.write(text,font=("Times",18,"normal"))
pen1.hideturtle()
turtle.done()
\ No newline at end of file
# 利用write()帮助悟空给诺依回信吧~
import turtle
pen=turtle.Pen()
pen.write("你好呀,诺依!\n你真是个大聪明!",font=("Times",30,"normal"))
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