diy1.py
322 Bytes
import turtle
T = turtle.Pen()
T.begin_fill()
T.fillcolor("red")
T.penup()
T.goto(-50,55)
T.left(135)
T.pendown()
T.circle(50,180)
T.forward(100)
T.left(90)
T.forward(100)
T.circle(50,180)
T.end_fill()
T.penup()
T.goto(150,50)
T.write("Hello~",font=("Times",20,"normal"))
T.hideturtle()
turtle.done()