Commit b4c146b0 by BellCodeEditor

save project

parent a50ceeec
Showing with 21 additions and 0 deletions
# 利用write()帮助悟空给诺依回信吧~
import turtle
t=turtle.Pen()
p=turtle.Screen()
p.bgcolor("pink")
t.penup()
t.goto(100,-100)
t.write("Hello,\nNuoYi(SB),\nI like turtle , \nThank you!",font=("宋体",24,"normal"))
t.hideturtle()
t2=turtle.Pen()
t2.pencolor("red")
t2.pensize("37")
l=180
t2.lt(45)
t2.fd(2*l)
t2.circle(l,180)
t2.rt(45*2)
t2.circle(l,180)
t2.fd(2*l)
t2.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