笑脸
import turtle as t
t.ht()
t.pensize(5)
#脸
t.color('orange','yellow')
t.begin_fill()
t.penup()
t.goto(0,-200)
t.pendown()
t.circle(200)
t.end_fill()
#嘴
t.color('brown')
t.penup()
t.goto(-100,-80)
t.pendown()
t.setheading(-60)
t.circle(110,120)
#右眼
t.color('brown','white')
t.begin_fill()
t.penup()
t.goto(100,80)
t.pendown()
t.circle(30)
t.end_fill()
t.color('black','black')
t.begin_fill()
t.circle(20)
t.end_fill()
#左眼
t.color('brown','white')
t.begin_fill()
t.penup()
t.goto(-60,80)
t.pendown()
t.circle(30)
t.end_fill()
t.color('black','black')
t.begin_fill()
t.circle(20)
t.end_fill()
t.done()
欠打
import turtle as t
t.ht()
t.pensize(5)
#脸
t.color('orange','yellow')
t.begin_fill()
t.penup()
t.goto(0,-200)
t.pendown()
t.circle(200)
t.end_fill()
#嘴
t.color('brown')
t.penup()
t.goto(-100,-100)
t.pendown()
t.setheading(60)
t.circle(-110,120)
#右眼
t.color('brown','white')
t.begin_fill()
t.penup()
t.goto(100,80)
t.pendown()
t.circle(30)
t.end_fill()
t.color('black','black')
t.begin_fill()
t.circle(20)
t.end_fill()
#左眼
t.color('brown','white')
t.begin_fill()
t.penup()
t.goto(-60,80)
t.pendown()
t.circle(30)
t.end_fill()
t.color('black','black')
t.begin_fill()
t.circle(20)
t.end_fill()
t.penup()
t.goto(100,100)
t.pendown()
t.write('你瞅啥',font=('宋体',50))
t.done()
大笑
import turtle as t
t.ht()
t.pensize(5)
#脸
t.color('orange','yellow')
t.begin_fill()
t.penup()
t.goto(0,-200)
t.pendown()
t.circle(200)
t.end_fill()
#嘴
t.color('brown','red')
t.begin_fill()
t.penup()
t.goto(-150,0)
t.pendown()
t.setheading(-90)
t.circle(150,180)
t.setheading(180)
t.forward(300)
t.end_fill()
t.color('white','white')
t.begin_fill()
t.penup()
t.goto(-100,-5)
t.pendown()
t.setheading(-90)
t.forward(20)
t.left(90)
t.forward(200)
t.left(90)
t.forward(20)
t.left(90)
t.forward(200)
t.end_fill()
#右眼
t.color('brown','white')
t.begin_fill()
t.penup()
t.goto(100,100)
t.pendown()
t.circle(30)
t.end_fill()
t.color('black','black')
t.begin_fill()
t.circle(20)
t.end_fill()
#左眼
t.color('brown','white')
t.begin_fill()
t.penup()
t.goto(-90,100)
t.pendown()
t.circle(30)
t.end_fill()
t.color('black','black')
t.begin_fill()
t.circle(20)
t.end_fill()
t.done()