shanzhi - 画多啦A梦1

import turtle as t

# 头部
def head():
    t.up()
    t.circle(150,40)
    t.down()
    t.fillcolor("#00a0de")
    t.begin_fill()
    t.circle(150,280)
    t.end_fill()

# 围巾
def scarf():
    t.fillcolor("#e70010")
    t.begin_fill()
    t.seth(0)
    t.fd(200)
    t.circle(-5,90)
    t.fd(10)
    t.circle(-5,90)
    t.fd(207)
    t.circle(-5,90)
    t.fd(10)
    t.circle(-5,90)
    t.end_fill()


def eyes():
    t.tracer(False)
    a = 2.5
    for i in range(120):
        if 0 <= i < 30 or 60 <= i < 90:
            a = a -0.05
            t.fd(a)
            t.left(3)
        else:
            a = a + 0.05
            t.left(3)
            t.fd(a)
    t.tracer(True)

def face():
    t.fd(183)
    t.fillcolor('white')
    t.begin_fill()
    t.lt(45)
    t.circle(120,100)
    t.seth(90)
    eyes()

    t.seth(180)
    t.up()
    t.fd(60)
    t.down()
    t.seth(90)
    eyes()

    t.seth(180)
    t.up()
    t.fd(64)
    t.down()

    t.seth(215)
    t.circle(120,100)
    t.end_fill()

def nose():
    t.up()
    t.goto(-10,158)
    t.down()
    t.fillcolor("#CD0000")
    t.begin_fill()
    t.circle(20)
    t.end_fill()

def mouth():
    t.up()
    t.goto(5,148)
    t.down()
    t.seth(270)
    t.fd(100)
    t.seth(0)
    t.circle(120,50)
    t.seth(230)
    t.circle(-120,100)

t.pensize(3)
t.screensize(800,600,"#B0C4DE")

t.speed(0)
head()
scarf()
face()
nose()
mouth()

t.done()





评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值