Commit fcd6570f by BellCodeEditor

auto save

parent 654bc3ba
Showing with 24 additions and 0 deletions
# 利用write()帮助悟空给诺依回信吧~
import turtle
s=turtle.Screen()
s.bgcolor("light yellow")
w=s.textinput("123","12345")
l=int(w)
p=turtle.Pen()
p.penup()
p.goto(100,-100)
p.write("12345\n12345",font=("华文行楷",20,"normal"))
p.hideturtle()
a=turtle.Pen()
a.pensize(5)
a.color("red","blue")
a.begin_fill()
a.left(45)
a.forward(l*2)
a.circle(l,180)
a.right(90)
a.circle(l,180)
a.forward(l*2)
a.end_fill()
turtle.done()
\ No newline at end of file
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