Commit e6415926 by BellCodeEditor

auto save

parent fabfa353
Showing with 11 additions and 9 deletions
......@@ -4,17 +4,9 @@ screen=turtle.Screen()
screen.bgcolor("light blue")
len=screen.textinput("提示","你想要多大的气球")
lovesize=int(len)
import turtle
screen=turtle.Screen()
screen.bgcolor("light blue")
len=screen.textinput("100","100")
len=int(len)
pen=turtle.Pen()
pen.write("你好\n奥里给.",font=("Times",30,"normal"))
pen.hideturtle()
len=60
pen.penup()
pen.pendown()
pen.pensize(5)
pen.pencolor("blue")
pen.left(45)
......@@ -38,4 +30,14 @@ pen.circle(lovesize,180)
pen.right(90)
pen.circle(lovesize,180)
pen.forward(2*lovesize)
import turtle
screen=turtle.Screen()
screen.bgcolor("light blue")
len=screen.textinput("100","100")
len=int(len)
pen=turtle.Pen()
pen.goto(100,-100)
pen.color("blue")
pen.write("你好\n搜索.",font=("Times",30,"normal"))
pen.hideturtle()
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