Commit 8af61dde by BellCodeEditor

auto save

parent 4cac003e
Showing with 23 additions and 3 deletions
neme=input("输入名字")
print(neme+"你好啊")
\ No newline at end of file
import turtle
pen=turtle.Pen()
screen=turtle.Screen()
screen.bgcolor("pink")
text1=screen.textinput("提示","请输入爱心的大小:")
len=int(text1)
pen.write("我叫GGBone,\n我是大帅B",font=("Times",30,"normal"))
pen.pensize(5)
pen.pencolor("red")
pen.penup()
pen.goto(100,-300)
pen.pendown()
pen.left(45)
pen.forward(2*len)
pen.circle(len,180)
pen.right(90)
pen.circle(len,180)
pen.forward(2*len)
pen.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