Commit 35b0cbbd by BellCodeEditor

auto save

parent 07858a54
Showing with 23 additions and 0 deletions
import turtle
pen=turtle.Pen()
screen=turtle.Screen()
hd=screen.textinput("询问","你要什么颜色的背景?英文")
sz1=screen.textinput("询问","你要多大的爱心?")
sz=int(sz1)
screen.bgcolor(hd)
pen.color("pink")
pen.penup()
pen.goto(0,-75)
pen.pendown()
pen.left(45)
pen.forward(sz*2)
pen.circle(sz,180)
pen.right(90)
pen.circle(sz,180)
pen.forward(sz*2)
pen.penup()
pen.goto(150,-100)
pen.write("qwertyuiopasdfghjklzxcvbnm\nqazwsxedcrfvtgbyhnujmikolp",font=("Times",20,"normal"))
pen.hideturtle()
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