Commit 15bb8a4f by BellCodeEditor

save project

parent 3f616828
Showing with 7 additions and 19 deletions
# 利用write()帮助悟空给诺依回信吧~
import turtle
# len=60
pen=turtle.Pen()
screen=turtle.Screen()
screen.bgcolor('blue')
pen.penup()
pen.goto(100,-100)
pen.write('春眠不觉晓\n处处闻啼鸟\n夜来风雨声\n花落知多少',font=('Times',30,'normal'))
pen.hideturtle()
pen1=turtle.Pen()
pen1.pensize(5)
pen1.pencolor('red')
pen1.left(45)
len=screen.textinput("提示框","请问你的爱心有多大?")
lovesize=int(len)
pen1.forward(2*lovesize)
pen1.circle(lovesize,180)
pen1.right(90)
pen1.circle(lovesize,180)
pen1.forward(2*lovesize)
pen1.hideturtle()
pen=turtle.Pen()
size=screen.textinput("提示框","你想要多大的魔法阵呀!")
size1=int(size)
pen.circle(size1)
pen.circle(size1,360,3)
pen.circle(size1,60)
pen.circle(size1,360,3)
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