python
import turtle as t
t.pensize(5) #设置画笔尺寸
t.color("red","yellow") #设置画笔颜色
t.begin_fill() #开始填充
t.circle(150) #绘制一个半径为100像素的圆
t.end_fill() #结束填充
#画眼睛(左眼)
t.penup() #抬起画笔
t.goto(-40,170) #移动到指定坐标
t.pendown()
t.pensize(2)
t.color("black","black")
t.begin_fill()
t.circle(30)
t.end_fill()
#画眼睛(右眼)
t.penup()
t.goto(50,170)
t.pendown()
t.pensize(2)
t.color("black","black")
t.begin_fill()
t.circle(30)
t.end_fill()
#画嘴
t.penup()
t.goto(-55,120)
t.pendown()
t.right(90)
t.pensize(3)
t.color("red")
t.circle(60,180)
t.hideturtle()
t.done()
效果图如下: