Commit beb110d8 by BellCodeEditor

save project

parent 111b90b4
Showing with 6 additions and 4 deletions
import turtle import turtle
lovesize=turtle.textinput("爱心半径","你想要爱心的半径是多少:")
len=int(lovesize)
turtle.bgcolor("lightyellow") turtle.bgcolor("lightyellow")
turtle.fillcolor("pink") turtle.fillcolor("pink")
turtle.pensize(6) turtle.pensize(6)
turtle.pencolor("pink") turtle.pencolor("pink")
turtle.begin_fill() turtle.begin_fill()
turtle.lt(45) turtle.lt(45)
turtle.fd(100) turtle.fd(len*2)
turtle.circle(50,180) turtle.circle(len,180)
turtle.rt(90) turtle.rt(90)
turtle.circle(50,180) turtle.circle(len,180)
turtle.fd(100) turtle.fd(len*2)
turtle.end_fill() turtle.end_fill()
turtle.up() turtle.up()
turtle.goto(-100,-100) turtle.goto(-100,-100)
......
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