Commit 2ee6e7bb by BellCodeEditor

save project

parent c9dfbb05
Showing with 16 additions and 16 deletions
# 利用write()帮助悟空给诺依回信吧~
import turtle import turtle
screen=turtle.Screen() screen=turtle.Screen()
screen.bgcolor("light blue") screen.bgcolor("light blue")
len=screen.textinput( "提示","你想要多大爱心?") len=screen.textinput("100","100")
lovesize=int(len) len=int(len)
pen=turtle.Pen() pen=turtle.Pen()
pen.write("你好\n诺伊g.",font=("Times",30,"normal")) pen.write("你好\nSB.",font=("Times",30,"normal"))
pen.hideturtle() pen.hideturtle()
pen1=turtle.Pen() len=60
pen1.penup() pen.penup()
pen1.goto(100,100) pen.goto(100,100)
pen1.pendown() pen.pendown()
pen1.pensize(5) pen.pensize(5)
pen1.pencolor("red") pen.pencolor("red")
pen1.left(45) pen.left(45)
pen1.forward(lovesize*2) pen.forward(2*len)
pen1.circle(lovesize,180) pen.circle(len,180)
pen1.right(90) pen.right(90)
pen1.circle(lovesize,180) pen.circle(len,180)
pen1.forward(lovesize*2) pen.forward(2*len)
turtle.done() 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