chenstack's recent timeline updates
chenstack

chenstack

V2EX member #216014, joined on 2017-02-19 12:55:40 +08:00
epic 本周送的可视化编程游戏,打算玩一下看看
游戏  •  chenstack  •  Dec 4, 2021  •  Lastly replied by rrfeng
3
python3 中 -123 // 10 = ?
Python  •  chenstack  •  Mar 29, 2020  •  Lastly replied by asche910
4
问一个 es6 class 类中定义属性的问题
JavaScript  •  chenstack  •  Mar 14, 2020  •  Lastly replied by chnwillliu
8
不懂就问, python3 的 1 // 0.1
Python  •  chenstack  •  Oct 24, 2019  •  Lastly replied by catroll
8
Windows Terminal (Preview) 试用感觉
程序员  •  chenstack  •  Jun 30, 2019  •  Lastly replied by minagami777
39
Django 模板渲染嵌套的生成器表达式的问题
Python  •  chenstack  •  Jan 17, 2019  •  Lastly replied by punderson
2
关于 Windows 端 Python 3.7.2 embeddable 版运行报错
  •  1   
    Python  •  chenstack  •  Jan 9, 2019  •  Lastly replied by chenstack
    2
    来求个提示,阿里技术的贺岁彩蛋
    问与答  •  chenstack  •  Feb 15, 2018  •  Lastly replied by chenstack
    3
    问一个__setattr__和__set__优先级的问题
    Python  •  chenstack  •  Sep 27, 2017  •  Lastly replied by chenstack
    7
    chenstack's recent replies
    生化危机 4 RE +1
    Feb 20, 2023
    Replied to a topic by deng1xia 分享发现 ¥1.71, chatGPT 的手机验证码
    晚上刷了一阵子,基本没号了
    Jan 31, 2023
    Replied to a topic by matrix1010 程序员 维格表宣布开源
    看了楼上的讨论,的确挺让人疑惑的,两个官网看着都很独立,是同一拨人做的吗,https://apitable.com/about/,https://vika.cn/company/
    Oct 24, 2022
    Replied to a topic by tw93 程序员 🏂 1024 节日快乐,写了一个小彩蛋
    秒啊
    Jan 28, 2022
    Replied to a topic by maguowei 程序员 github 又挂了?
    也是主页访问不了,报 500
    Jan 25, 2022
    Replied to a topic by nullboy 职场话题 各位年终奖发了没?
    还不知道有没有呢
    Dec 20, 2021
    Replied to a topic by acainiao 游戏开发 我的游戏《魔旅之塔》将要发售了。
    支持一下,已加愿望单
    Dec 8, 2021
    Replied to a topic by shakaraka 程序员 js 如何实现对象值复制?
    @avastms #28 这种方式变成 b 往上找值,a 的改动还会影响 b ,而且 b 没有给字段赋值的话,JSON.stringify(b)返回空的"{}"
    Oct 19, 2021
    Replied to a topic by ShowMeBug2020 程序员 1024 程序员节,好多公司搞活动
    我司去年和今年是搞编程比赛,题目是求解 18 关 n 数码问题(第一关是 8 数码,阶数一次+1 ),总步数少的得分高,而且有在线页面可以手动推,非程序员也能参与玩耍一下。还有个颁奖的下午茶,还挺期待今年的题目。
    Sep 21, 2021
    Replied to a topic by MiketsuSmasher Python [ Python ]如何取回生成器的返回值
    生成器迭代结束后会生成一个 StopIteration,返回值就是这个 StopIteration 的 value
    def iter_check():
        for i in range(5):
            yield i
        return 10


    checker = iter_check()
    while True:
        try:
            print(next(checker))
        except StopIteration as e:
            print("result: ", e.value)
            break
    About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   1093 Online   Highest 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 23ms · UTC 18:31 · PVG 02:31 · LAX 11:31 · JFK 14:31
    ♥ Do have faith in what you're doing.