猫史档案馆


熊熊糖果

熊熊糖果

Lv.1

获赞:538收藏:255浏览:10862作品收藏:380

签名:退喵了 别关注了,永远拖更(doge * * * 修改于[2021-6-30] https://greasyfork.org/zh-CN/scripts/441193

回复帖子评论
上一页1 页 / 共 5下一页

【开源达人揭晓】17期开源达人——美队钢铁侠 中回复

呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵emotion_编程猫_嗨起来

2019-09-15T12:38:59 点赞:0

Python画哆啦A梦 中回复

import turtle
import turtle as t


# * -- utf-8 -- *
# Author: Tang

t.speed(10)
t.pensize(8)
t.hideturtle()
t.screensize(500, 500, bg='white')

# 猫脸
t.fillcolor("#00A1E8")
t.begin_fill()
t.circle(120)
t.end_fill()

t.pensize(3)
t.fillcolor('white')
t.begin_fill()
t.circle(100)
t.end_fill()

t.penup()
t.home()
t.goto(0, 134)
t.pendown()
t.pensize(4)
t.fillcolor("#EA0014")
t.begin_fill()
t.circle(18)
t.end_fill()

t.penup()
t.goto(7, 155)
t.pensize(2)
t.color('white', 'white')
t.pendown()
t.begin_fill()
t.circle(4)
t.end_fill()

t.penup()
t.goto((-30), 160)
t.pensize(4)
t.pendown()
t.color('black', 'white')
t.begin_fill()
a = 0.4
for i in range(120):
    if (0 <= i < 30 or 60 <= i < 90):
        a = (a + 0.08)
        # 向左转3度
        t.left(3)
        #    向前走a的步长
        t.forward(a)
    else:
        a = (a - 0.08)
        t.left(3)
        t.forward(a)
t.end_fill()

t.penup()
t.goto(30, 160)
t.pensize(4)
t.pendown()
t.color('black', 'white')
t.begin_fill()
for i in range(120):
    if (0 <= i < 30 or 60 <= i < 90):
        a = (a + 0.08)
        # 向左转3度
        t.left(3)
        #     向前走a的步长
        t.forward(a)
    else:
        a = (a - 0.08)
        t.left(3)
        t.forward(a)
t.end_fill()

t.penup()
t.goto((-38), 190)
t.pensize(8)
t.pendown()
t.right((-30))
t.forward(15)
t.right(70)
t.forward(15)

t.penup()
t.goto(15, 185)
t.pensize(4)
t.pendown()
t.color('black', 'black')
t.begin_fill()
t.circle(13)
t.end_fill()

t.penup()
t.goto(13, 190)
t.pensize(2)
t.pendown()
t.color('white', 'white')
t.begin_fill()
t.circle(5)
t.end_fill()

t.penup()
t.home()
t.goto(0, 134)
t.pensize(4)
t.pencolor('black')
t.pendown()
t.right(90)
t.forward(40)

t.penup()
t.home()
t.goto(0, 124)
t.pensize(3)
t.pencolor('black')
t.pendown()
t.left(10)
t.forward(80)

t.penup()
t.home()
t.goto(0, 114)
t.pensize(3)
t.pencolor('black')
t.pendown()
t.left(6)
t.forward(80)

t.penup()
t.home()
t.goto(0, 104)
t.pensize(3)
t.pencolor('black')
t.pendown()
t.left(0)
t.forward(80)

# 左边的胡子
t.penup()
t.home()
t.goto(0, 124)
t.pensize(3)
t.pencolor('black')
t.pendown()
t.left(170)
t.forward(80)

t.penup()
t.home()
t.goto(0, 114)
t.pensize(3)
t.pencolor('black')
t.pendown()
t.left(174)
t.forward(80)

t.penup()
t.home()
t.goto(0, 104)
t.pensize(3)
t.pencolor('black')
t.pendown()
t.left(180)
t.forward(80)

t.penup()
t.goto((-70), 70)
t.pendown()
t.color('black', 'red')
t.pensize(6)
t.setheading((-60))
t.begin_fill()
t.circle(80, 40)
t.circle(80, 80)
t.end_fill()

t.penup()
t.home()
t.goto((-80), 70)
t.pendown()
t.forward(160)

t.penup()
t.home()
t.goto((-50), 50)
t.pendown()
t.pensize(1)
t.fillcolor("#eb6e1a")
t.setheading(40)
t.begin_fill()
t.circle((-40), 40)
t.circle((-40), 40)
t.setheading(40)
t.circle((-40), 40)
t.circle((-40), 40)
t.setheading(220)
t.circle((-80), 40)
t.circle((-80), 40)
t.end_fill()

# 领带
t.penup()
t.goto((-70), 12)
t.pensize(14)
t.pencolor('red')
t.pendown()
t.setheading((-20))
t.circle(200, 30)
t.circle(200, 10)

# 铃铛
t.penup()
t.goto(0, (-46))
t.pendown()
t.pensize(3)
t.color("black", '#f8d102')
t.begin_fill()
t.circle(25)
t.end_fill()

t.penup()
t.goto((-5), (-40))
t.pendown()
t.pensize(2)
t.color("black", '#79675d')
t.begin_fill()
t.circle(5)
t.end_fill()

t.pensize(3)
t.right(115)
t.forward(7)

turtle.done()

2019-10-03T21:07:52 点赞:0

【社区优秀创作者】2016~2019累计5次上首页的训练师!!! 中回复

[小电视_笑][小电视_笑][小电视_笑]

2020-02-01T15:18:28 点赞:0

【代码岛3.0内测第9弹 - 编程!!】首批编程大师招募! 中回复

[2233娘_吃惊]

2020-02-01T15:23:40 点赞:0

【科普贴】系统叛变?还是黑客入侵?? 中回复

额,呵呵

2020-02-18T19:40:11 点赞:0

【代码岛3.0绝密文档泄露??!!】谁能破译 中回复

换python我来

2020-03-10T17:05:30 点赞:0

我想加入工作室 中回复

满人

2020-03-12T14:07:46 点赞:0

我想加入工作室 中回复

等工作室2级再来

删帖,谢谢

2020-03-12T14:07:59 点赞:0

【萌新提高室】【教程贴】Python画喵队长盾牌教程【原创】 中回复

作品整体源代码在这里哦~

import turtle as t

t.speed(0)

def move(x,y):
    t.up()
    t.goto(x,y)
    t.down()
def star(n):
    for x in range(5):
        t.fd(n)
        t.rt(144)

#外红圈
t.color('red')
move(0,-300)
t.begin_fill()
t.circle(300)
t.end_fill()

#灰圈
t.color('silver')
move(0,-250)
t.begin_fill()
t.circle(250)
t.end_fill()

#内红圈
t.color('red')
move(0,-200)
t.begin_fill()
t.circle(200)
t.end_fill()

#内蓝圈
t.color('blue')
move(0,-150)
t.begin_fill()
t.circle(150)
t.end_fill()

#五角星
t.color('white')
move(-137.5,45)
t.begin_fill()
star(275)
t.end_fill()

#隐藏画笔
t.ht()

#保持画布
t.done()

2020-03-14T09:21:21 点赞:0

【水视频】我在B站水了一个视频 中回复

D I N G

D I N G

2020-03-14T16:37:59 点赞:0

【申请加入回帖】祝贺工作室升到2级! 中回复

为了庆祝我们萌新提高室升到二级

我还特意做了一个庆祝特别篇哦~

2020-03-16T20:34:56 点赞:0

帮我选工作室呗 中回复

萌新提高室

center_image

2020-03-17T13:14:12 点赞:1

【申请加入回帖】祝贺工作室升到2级! 中回复

进来的能给一个三连吗?

https://shequ.codemao.cn/work/38589629

2020-03-18T14:17:49 点赞:0

我我我我我我我我要加入 中回复

找室长,还有1个人能加

2020-03-20T13:34:52 点赞:0

我要加行吗 中回复

可以的,找室长

2020-03-20T13:36:13 点赞:0

腾易工作室 特批门槛降低以及其他 求看 中回复

别瞎吹

center_image

根本就没有什么仓鼠工作室

2020-03-20T21:23:32 点赞:0

【申请加入回帖】祝贺工作室升到2级! 中回复

为了提高作品质量

讨论后决定,萌新提高室增加进入门槛

赞数量50

浏览量300

收藏数10

具体看这里↓

https://shequ.codemao.cn/community/263024

2020-03-24T13:10:19 点赞:0

【python区的进来】最喵ython区很冷淡啊 中回复

呵呵呵

2020-03-27T13:10:25 点赞:0

minecraft hcml下载网址: 中回复

hcml是啥,问一下,顺便说下我QQ号1747433912

2020-03-27T21:34:02 点赞:0

【Python作品分享】【逆天操作】B站BV号转av号算法(搬运) 中回复

AV转BV算法:https://www.bilibili.com/video/BV1N741127Tj

BV转AV算法:https://www.bilibili.com/video/BV1R7411y7kw

2020-03-27T21:36:13 点赞:0

【❗️注意】未通过代码岛3.0编辑器申请的进 中回复

啊,万能的吉吉喵啊,让我通过吧

2020-03-30T14:39:18 点赞:0

求教*** 中回复

画板里面可以写字啊

2020-03-30T15:08:57 点赞:1

26个字母 中回复

ABC的风格hi捷克罗姆喵嵌入式图帮我下一站

2020-03-30T22:33:15 点赞:0

惊喜福利 | 编程猫小创客礼盒全新上市,2人成团超划算! 中回复

center_imagecenter_imagecenter_imagecenter_imagecenter_imagecenter_image

2020-04-01T16:32:53 点赞:2

我的和平精英 中回复

。。。

2020-04-04T08:35:08 点赞:0

我已经抢购了,但是哪个F码怎么给我啊?在哪能看到我抢购成功了? 中回复

f码是什么

2020-04-07T23:38:45 点赞:0

一个谐音毁掉一句话 中回复

‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬

2020-05-04T17:18:12 点赞:0

天哪,官方给我点赞了! 中回复

额呃呃呃

2020-05-16T16:43:27 点赞:0

求助傲... 中回复

??????啥玩意儿

2020-05-16T16:45:11 点赞:0

这™是出bug了吧 中回复

刷新

2020-05-17T19:41:32 点赞:0