摘要: 第六章:Python高级编程 对象引用、可变性和垃圾回收 6.1 Python中的变量是什么 在示例所示的交互式控制台中,无法使用“变量是盒子”做解释。下图说明了在 Python 中为什么不能使用盒子比喻,而便利贴则指出了变量的正确工作方式。 变量 a 和 b 引用同一个列表,而不是那个列表的副本 阅读全文
posted @ 2020-05-18 23:01 公众号海哥python 阅读(112) 评论(0) 推荐(0) 编辑
摘要: 5.1 dict的abc继承关系 和list(Sequence)相似,都继承于Collection,添加了一些方法 from collections.abc import Mapping,MutableMapping # dict是属于Mapping类型的 a = {} print(type(a)) 阅读全文
posted @ 2020-05-18 22:57 公众号海哥python 阅读(165) 评论(0) 推荐(0) 编辑