Commit 45d29bec by BellCodeEditor

save project

parent 07858a54
Showing with 24 additions and 0 deletions
import turtle
import turtle
screen=turtle.Screen()
screen.bgcolor("pink")
pen=turtle.Pen()
pen.penup()
pen.goto(100,-100)
pen.write("写给陈赫的经典语句:\n春眠不觉晓,\n鲁班嘎嘎秒。\n哦,不对!\n是——怕——。\n————小九五",font=("Times",20,"normal"))
pen.hideturtle()
import turtle
r=screen.textinput("提示","你想画多大的爱心呀?")
lovesize=int(r)
r=60
pen95=turtle.Pen()
pen95.pencolor("red")
pen95.pensize(5)
pen95.left(45)
pen95.forward(2*r)
pen95.circle(r,180)
pen95.right(90)
pen95.circle(r,180)
pen95.forward(2*r)
pen95.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