Tell me and I forget. Teach me and I remember. Involve me and I learn.
书籍介绍 微信读书链接 京东链接 亚马逊链接 推荐值 ⭐⭐⭐ / ⭐⭐⭐⭐⭐ 一般,可读可不读 读后感 周金涛先生曾任职于中信建投证券首席经济学家,他是国内宏观
__missing__ 方法的作用 Python 的官方文档中,是这样描述__missing__方法的: If a subclass of dict defines a method __missing__() and key is not present, the d[key] operation calls that method with the key key as argument. The d[key] operation then returns or raises whatever is returned
什么是魔术方法 Python 中我们可以自定义我们需要的类,并实现相关的类的方法。其中,有一种特殊的方法,它们的名称是以双下划线开始,并以双下划线结束,这
前言 在使用 Python 字典的时候,通过 d[k] 来获取键 k 的值,如果 k 不存在,Python 会抛出KeyError异常,这符合 Python 信奉的“快速失败”哲学。我们可以
前言 在 Python内置的序列类型 一文中,本人简略地介绍了对象的不可变性(immutable)和可散列性(hashable),以及它们之间的关