猫史档案馆


【Python作品分享】36强进10

用户:嘤嘤怪哟嘤嘤怪哟查看:0 回复:0 评论:0 创建时间:2021-05-22T23:56:25


【作品展示】

center_image

 

【作品介绍】

以海绵宝宝为灵感的作品主要是通过turtle库来绘制,表达对中国航天的赞美

 

【作品源代码】

from turtle import *


def go_to(x, y):
    penup()
    goto(x, y)
    pendown()


def help_do():
    go_to(-400, 0)
    forward(800)
    go_to(-400, 100)
    forward(800)
    go_to(-400, 200)
    forward(800)
    go_to(-400, -100)
    forward(800)
    go_to(-400, -200)
    forward(800)
    left(90)
    go_to(0, -300)
    forward(600)
    go_to(100, -300)
    forward(600)
    go_to(-100, -300)
    forward(600)
    go_to(-200, -300)
    forward(600)
    go_to(200, -300)
    forward(600)


def head():
    go_to(-200, 180)
    fillcolor('yellow')
    begin_fill()
    seth(-30)
    for _ in range(6):
        circle(36, 60)
        circle(-36, 60)
    seth(-125)
    for _ in range(5):
        circle(40, 60)
        circle(-40, 60)
    seth(-210)
    for _ in range(4):
        circle(45, 60)
        circle(-45, 60)
    seth(65)
    for _ in range(5):
        circle(40, 60)
        circle(-40, 60)
    end_fill()


def eye():
    # 眼白
    go_to(14, -5)
    fillcolor('#f0f0f0')
    begin_fill()
    circle(65, 360)
    end_fill()
    begin_fill()
    go_to(13, 12)
    seth(98)
    circle(-65, 360)
    end_fill()

    #眼球
    go_to(-10, 20)
    fillcolor('blue')
    begin_fill()
    circle(20, 360)
    end_fill()
    go_to(-22, 20)
    fillcolor('black')
    begin_fill()
    circle(7, 360)
    end_fill()
    go_to(40, 15)
    fillcolor('blue')
    begin_fill()
    circle(-20, 360)
    end_fill()
    go_to(53, 15)
    fillcolor('black')
    begin_fill()
    circle(-7, 360)
    end_fill()

    #睫毛
    go_to(-95, 65)
    left(20)
    forward(40)
    go_to(-50, 87)
    right(25)
    forward(32)
    go_to(0, 70)
    right(25)
    forward(40)

    go_to(40, 75)
    left(35)
    forward(40)
    go_to(90, 87)
    right(18)
    forward(30)
    go_to(120, 70)
    right(25)
    forward(40)


def nose():
    fillcolor('yellow')
    go_to(0, -7)
    begin_fill()
    right(50)
    circle(-60, 30)
    color('yellow')
    goto(15, -40)
    end_fill()
    color('black')
    go_to(0, -7)
    seth(-75)
    forward(30)
    go_to(30, -7)
    seth(-105)
    forward(30)


def mouth():
    go_to(-120, - 60)
    seth(-45)
    circle(200, 30)
    seth(0)
    forward(100)
    seth(15)
    circle(200, 30)


def tooth():
    go_to(-30, -114)
    seth(-95)
    fillcolor('white')
    begin_fill()
    forward(30)
    seth(0)
    forward(40)
    seth(95)
    forward(30)
    go_to(-30, -114)
    end_fill()

    go_to(30, -114)
    seth(-95)
    fillcolor('white')
    begin_fill()
    forward(30)
    seth(0)
    forward(40)
    seth(95)
    forward(30)
    go_to(60, -114)
    end_fill()


def hole():
    go_to(-160, 160)
    # fillcolor('#ffd700')
    # begin_fill()
    circle(30, 360)
    # a=1
    # for i in range(120):
    #     if 0<=i<30 or 60<=i<90:
    #         a=a+0.2
    #         lt(3)
    #         forward(a)
    #     else:
    #         a=a-0.2
    #         lt(3)
    #         forward(a)
    # end_fill()


def face():
    eye()
    nose()
    mouth()
    tooth()
    # hole()


def body():
    go_to(-170, -180)
    seth(-120)
    circle(150, 30)
    seth(0)
    forward(40)
    seth(100)
    forward(35)
    seth(-80)
    forward(100)
    fillcolor('brown')
    begin_fill()
    seth(0)
    forward(300)
    seth(80)
    forward(110)
    seth(-100)
    forward(65)
    seth(180)
    forward(315)
    go_to(-118, -400)
    end_fill()
    go_to(-170, -255)
    fillcolor('yellow')
    begin_fill()
    seth(-75)
    forward(80)
    seth(0)
    forward(17)
    seth(105)
    forward(85)
    end_fill()

    go_to(200, -170)
    seth(-60)
    circle(-150, 30)
    seth(-180)
    forward(45)
    begin_fill()
    seth(0)
    forward(20)
    seth(-100)
    forward(85)
    seth(180)
    forward(20)
    end_fill()


def tie():
    go_to(-50, -225)
    seth(-40)
    forward(40)
    seth(30)
    forward(52)
    go_to(30, -225)
    seth(-30)
    forward(40)
    seth(40)
    forward(45)
    fillcolor('red')
    go_to(0, -240)
    begin_fill()
    seth(-60)
    forward(10)
    seth(0)
    forward(30)
    seth(60)
    forward(15)
    go_to(30, -225)
    end_fill()
    go_to(4, -250)
    begin_fill()
    seth(-100)
    forward(80)
    seth(0)
    forward(55)
    seth(100)
    forward(80)
    end_fill()


def spongeBob():
    # help_do()
    head()
    face()
    body()
    tie()


if __name__ == '__main__':
    screensize(800, 600, 'white')
    pensize(3)
    speed(10)
    go_to(0, 0)
    spongeBob()
    go_to(-100, 240)
    write('海绵宝宝给中国航天的信', font=('BRUSHSCI.TTF', '30', 'bold'))
    go_to(-100,170)
    write('祝中国航天加油', font=('BRUSHSCI.TTF', '30', 'bold'))
    mainloop()

 

【提示】

部分含有Python第三方库相关内容的作品,在海龟编辑器网页端无法运行哦!如遇到这种情况,可以打开下面的链接,下载海龟编辑器客户端:

https://python.codemao.cn


回复

上一页1 页 / 共 0下一页