Commit d0a1bc44 by BellCodeEditor

auto save

parent b4caab9e
Showing with 4 additions and 4 deletions
#导入模块
import turtle
#创建一支画笔
pen = turtle.Pen()
screen = turtle.Screen()
screen.bgcolor("pink")
len = screen.textinput("提示","你想画多大的爱心")
love=int(len)
#创建变量len表示圆的半径
len = screen.textinput("提示","你想要多大的爱心")
love = int(len)
pen.penup()
pen.goto(100,-100)
pen.write("春眠不觉晓,\n处处闻啼鸟",font=("Times",20,"normal"))
......
import turtle
s=turtle.Screen()
s.textinput("姓名框","你叫什么名字")
s.textinput("姓名框","你叫什么名字")
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