diy1.py
475 Bytes
# 利用write()帮助悟空给诺依回信吧
import turtle
screen=turtle.Screen()
screen.bgcolor("light blue")
pen=turtle.Pen()
pen.penup()
pen.goto(100,-100)
pen.write("我祝美国人\n死的快乐",font=("times",30,"normal"))
pen.hideturtle()
len=10
pen1=turtle.Pen()
pen1.pencolor('red')
pen1.pensize(2)
pen1.left(45)
pen1.forward(2*len)
pen1.circle(len,180)
pen1.right(90)
pen1.circle(len,180)
pen1.forward(2*len)
pen1.hideturtle()
turtle.done()