diy1.py
354 Bytes
import turtle
screen=turtle.Screen()
screen._bgcolor(red)
pen=turtle.Pen()
pen.penup()
pen.goto(0,-100)
pen.write("你好,诺伊\n我是悟空",font=("Times",30,"normal"))
pen.pensize(5)
pen.pencolor("red")
pen.left(45)
pen.forward(100)
pen.circle(50,180)
pen.right(90)
pen.circle(50,180)
pen.forward(100)
pen.hideturtle()
turtle.done()