Python随笔(1)——用Python画一个简单的滑稽表情

Python随笔(1)——用Python画一个简单的滑稽表情

import turtle as t

t.speed(50)
t.pensize(10)
t.pencolor("yellow")
t.penup()
t.goto(0,-300)
t.pendown()

# 画脸
t.fillcolor("yellow")
t.begin_fill()
t.circle(300,360)
t.end_fill()

# 画嘴巴
t.penup()
t.goto(-240,-10)
t.pendown()
t.seth(-90)
t.pencolor("black")
t.circle(240,180)

# 画左眼
t.penup()
t.goto(-210,70)
t.seth(30)
t.pendown()
t.pensize(5)
t.fillcolor("white")
t.begin_fill()
t.circle(-130,60)
t.seth(20)
t.circle(20,90)
t.seth(145)
t.circle(130,75)
t.seth(-110)
t.circle(18,85)
t.seth(30)
t.circle(-100,3)
t.end_fill()

# 画右眼
t.penup()
t.goto(70,70)
t.seth(30)
t.pendown()
t.begin_fill()
t.circle(-130,60)
t.seth(20)
t.circle(20,90)
t.seth(145)
t.circle(130,75)
t.seth(-110)
t.circle(18,85)
t.seth(30)
t.circle(-100,3)
t.end_fill()

# 画右眼球
t.penup()
t.goto(80,82)
t.seth(-20)
t.pensize(1)
t.pendown()
t.fillcolor("black")
t.begin_fill()
t.circle(11,360)
t.end_fill()

# 画左眼球
t.penup()
t.goto(-200,81)
t.seth(-20)
t.pensize(1)
t.pendown()
t.fillcolor("black")
t.begin_fill()
t.circle(11,360)
t.end_fill()

# 画左眉毛
t.penup()
t.goto(-110,180)
t.seth(130)
t.pensize(10)
t.pendown()
t.circle(120,90)

# 画右眉毛
t.penup()
t.goto(90,180)
t.seth(50)
t.pensize(10)
t.pendown()
t.circle(-120,90)

t.done()

Python随笔(1)——用Python画一个简单的滑稽表情_第1张图片

你可能感兴趣的:(Python随笔(1)——用Python画一个简单的滑稽表情)