import turtle
a=turtle.Pen() 
a.pensize(3)
a.pencolor("blue")
a.fillcolor("blue")
a.penup()
a.goto(160,-160)
a.write("春晓\n春眠不觉晓\n处处闻啼鸟\n夜来风雨声\n花落知多少",font=("times",20,"normal"))
a.penup()
a.goto(0,0)
a.pendown()
a.begin_fill()
a.left(45)
a.fd(160)
a.circle(80,180)
a.right(90)
a.circle(80,180)
a.fd(160)
a.end_fill()
turtle.done()