Commit 99a2ec2d by BellCodeEditor

auto save

parent 030d424c
Showing with 23 additions and 0 deletions
import turtle
pen = turtle.Pen()
screen = turtle.Screen()
len = int(screen.textinput("提示","你想要画出多大的爱心"))
screen.bgcolor("light blue")
pen.pensize(10)
pen.pencolor("red")
pen.up()
pen.goto(0,-200)
pen.down()
pen.left(45)
pen.forward(len)
pen.circle(len/2,180)
pen.right(90)
pen.circle(len/2,180)
pen.forward(len)
pen.up()
pen.goto(100,-200)
pen.write("你好啊,\n小黑子,\n今天早上吃饭没啊\n -小黑子",font=("Times",15,"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