Commit ae1fd4bb by BellCodeEditor

auto save

parent 07858a54
Showing with 19 additions and 0 deletions
import turtle
turtle.left(45)
turtle.pencolor("red")
turtle.pensize(10)
a=int(turtle.textinput("提示:","输入值:"))
turtle.fillcolor("red")
turtle.begin_fill()
turtle.forward(a)
turtle.circle(a//2,180)
turtle.right(90)
turtle.circle(a//2,180)
turtle.forward(a)
turtle.end_fill()
turtle.penup()
turtle.goto(100,-100)
turtle.write("你好呀!",font=("黑体",30,"bold"))
turtle.bgcolor("pink")
turtle.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