Commit 4e480dfb by BellCodeEditor

auto save

parent c66a449e
Showing with 35 additions and 0 deletions
import turtle
#文字
pen= turtle.Pen()
screen = turtle.Screen()
screen.bgcolor("blue")
pen.penup()
pen.goto(100,-100)
pen.write("春眠不觉晓\n处处问题鸟", font=("times",30,"normal"))
pen.hideturtle()
pen2=turtle.Pen()
pen2.pensize(5)
len=screen.textinput("请输入","你想要多大的爱心啊")
newlen=int(len)
pen2.pencolor("red")
pen2.left(45)
pen2.forward(2*newlen)
pen2.circle(newlen,180)
pen2.right(90)
pen2.circle(newlen,180)
pen2.forward(2*newlen)
pen2.hideturtle()
turtle.done()
import turtle
screen=turtle.Screen()
screen.textinput("姓名","你的名字是:")
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