猫史档案馆


王W羽

王W羽

Lv.1

获赞:173收藏:65浏览:4458作品收藏:37

签名:下面有惊喜 没了 真的 没了 我QQ(微 信同号):1315858881

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

【Python作品分享】玫瑰花【作品秀】 中回复

# 复制的罒ω罒

2020-04-09T18:37:40 点赞:0

【Python作品分享】连续三角形(简单代码)【教程贴】 中回复

这三角形还不赖,可以可以

2020-04-14T21:47:08 点赞:0

【手机编程】用打一盘王者荣耀的时间,自己编程出一个游戏! 中回复

 

answer = input ('技术喵你能修复kitten 4在iPad上的所有bug吗?')
if ('answer == 能'):
    print ('技术喵最好了!')
else:
    print ('技术喵我家电脑可报废了你太坏了不给你小鱼饼干了!')
# answer变量=询问‘技术喵你能修复kitten 4在iPad上的所有bug吗?’ 如果answer=能 打印‘技术喵最好了!’ 否则 打印‘技术喵我家电脑可报废了你太坏了不给你小鱼饼干了!’
# 我翻译的行吧!!!

2020-04-15T21:18:43 点赞:4

关于工作室交流系统 中回复

试试这个链接https://kitten.codemao.cn/#46946986

2020-04-25T15:31:40 点赞:0

关于工作室交流系统 中回复

更新:聊天信息框不是一直显示的,如果在其他界面信息框还是显示直接输入空格
更新:不会出现[12:2]这样的时间,消息是这样
如:[12:02]YYD我的苹果呢:大家好
清空了聊天信息
更新:感谢羊汉羊的《鱼游工作室--今生不入鱼游团便是英雄也枉然》原作品:https://shequ.codemao.cn/work/46845607在主界面点击按钮即可进入,按返回即可返回

2020-04-25T16:48:54 点赞:0

关于工作室交流系统 中回复

@一起wan♂游戏吧 @马里奥爱审判

赶快改昵称哦,不然进不去哦

2020-04-25T16:52:00 点赞:0

@YYD一条小咸鱼 中回复

# 串门戴口罩了吗都来我们工作室用print函数

2020-04-26T18:45:13 点赞:0

【初级PYTHON小课堂】特别篇:Hello turtle! 上篇 中回复

# 这些你应该不用讲,积木模式都可以的
print('这些你应该不用讲,积木模式都可以的')

2020-05-20T19:14:35 点赞:0

【初级PYTHON小课堂】特别篇:Hello turtle! 上篇 中回复

不过你的导入方式讲得挺透彻地

2020-05-20T19:16:19 点赞:0

【Python作品分享】随机螺旋线【作业帖】 中回复

center_image是这个吧!!!center_image

2020-05-20T19:25:26 点赞:0

【Python】终于把“花式3D字体生成器”弄完了(公开源代码) 中回复

import turtle

__Pen = turtle.Pen()


def _E9_80_89_E6_8B_A9():

    word = input('请输入文字:')
    print('字体样式:')
    print('1、立体字')
    print('2、金属字')
    print('3、金字塔字(支持单字)')
    print('4、渐变字')
    print('5、彩虹字')
    typeface = int(input('请选择样式(序号):'))
    __Pen.hideturtle()
    __Pen.speed(0)
    print('字体生成中,请稍后......')
    if (typeface == 1):
        _E7_AB_8B_E4_BD_93_E5_AD_97(word)
    elif (typeface == 2):
        _E9_87_91_E5_B1_9E_E5_AD_97(word)
    elif (typeface == 3):
        _E9_87_91_E5_AD_97_E5_A1_94_E5_AD_97(word, 100)
    elif (typeface == 4):
        _E6_B8_90_E5_8F_98_E5_AD_97(word, 100, 0, ['ffccff', 'ff99ff', 'cc66cc', 'cc33cc', '993399', '663366', '330033'])
    elif (typeface == 5):
        _E5_BD_A9_E8_99_B9_E5_AD_97(word, 0, ['red', 'orange', 'yellow', 'green', 'cyan', 'blue'])
    else:
        pass
    print('字体生成完毕!')

def _E7_AB_8B_E4_BD_93_E5_AD_97(word):

    __Pen.penup()
    __Pen.goto((-150), 0)
    __Pen.setheading((-135))
    turtle.bgcolor("#999999")
    for __count in range(60):
        __Pen.forward(1)
        __Pen.pencolor("#000000")
        __Pen.write(word, font = ('Arial', 60, 'bold'))
        __Pen.pencolor("#ffffff")
        __Pen.write(word, font = ('Arial', 58, 'bold'))

def _E9_87_91_E5_B1_9E_E5_AD_97(word):

    __Pen.penup()
    __Pen.goto((-170), 0)
    __Pen.setheading(90)
    turtle.bgcolor("#666666")
    for __count in range(60):
        __Pen.forward(1)
        __Pen.pencolor("#cccccc")
        __Pen.write(word, font = ('Arial', 60, 'italic'))
        __Pen.pencolor("#333333")
        __Pen.write(word, font = ('Arial', 60, 'italic'))
    __Pen.pencolor("#cccccc")
    __Pen.write(word, font = ('Arial', 60, 'italic'))

def _E9_87_91_E5_AD_97_E5_A1_94_E5_AD_97(word,scale):

    __Pen.penup()
    __Pen.goto((-170), 0)
    __Pen.setheading((20 / len(word)))
    turtle.bgcolor("#ffcc33")
    for __count in range(20):
        __Pen.forward((1.5 * len(word)))
        __Pen.pencolor("#ffff99")
        scale -= 1
        __Pen.write(word, font = ('Arial', scale, 'normal'))
        __Pen.pencolor("#996633")
        scale -= 1
        __Pen.write(word, font = ('Arial', scale, 'normal'))
    __Pen.pencolor("#663333")
    scale -= 1
    __Pen.write(word, font = ('Arial', scale, 'normal'))

def _E6_B8_90_E5_8F_98_E5_AD_97(word,scale,color,color_list):

    __Pen.penup()
    __Pen.goto((-170), 0)
    __Pen.setheading((-20))
    turtle.bgcolor("#ffffff")
    for color in range(0, 7):
        __Pen.forward((1.5 * len(word)))
        __Pen.pencolor(('#' + color_list[color]))
        scale -= 2
        __Pen.write(word, font = ('Arial', scale, 'bold'))

def _E5_BD_A9_E8_99_B9_E5_AD_97(word,color,color_list):

    __Pen.penup()
    __Pen.goto((-170), 0)
    __Pen.setheading((-135))
    turtle.bgcolor("#ffffcc")
    for color in range(0, 6):
        for __count in range(2):
            __Pen.forward(2)
            __Pen.pencolor(color_list[color])
            __Pen.write(word, font = ('Arial', 60, 'bold'))
    __Pen.forward(2)
    __Pen.pencolor('purple')
    __Pen.write(word, font = ('Arial', 60, 'bold'))

#开始进入Python的世界
_E9_80_89_E6_8B_A9()

这个没有用,看不见字!!!你的代码太666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666v666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666了

turtle.done()

 

2020-05-20T19:32:39 点赞:0

盘点网页版Python不能用的代码 中回复

我第一次发帖,求回复!!!

2020-05-23T13:34:40 点赞:0

@室长请帮忙!! 中回复

center_image

center_image

@室长!!!为什么我的电脑显示的是这样的?

2020-06-07T13:37:07 点赞:0

【Python作品分享】遵义Python编程综合测评【作业帖】 中回复

???

turtle.done()

好像是

t.done()

2020-06-07T13:59:42 点赞:0

【暑期活动】社区史上周边奖励最多的小说、表情包、绘画活动!!! 中回复

center_image

2020-07-25T10:48:50 点赞:0