diy1.py
342 Bytes
# 利用write()帮助悟空给诺依回信吧~
import turtle
pen=turtle.Pen()
pen.write("我\n喜\n欢\np\ny\nt\nh\no\nn",font=("times",10,"normal"))
pen.hideturtle()
p=turtle.Pen()
p.pensize(5)
p.color("red")
p.left(45)
p.forward(100)
p.circle(50,180)
p.right(90)
p.circle(50,180)
p.forward(100)
p.hideturtle()
turtle.done()