第1章 Python数据模型
摘要:
#《流畅的Python》读书笔记 # 第一部分 序幕 # 第1章 Python数据模型 # 魔术方法(magic method)是特殊方法的昵称。于是乎,特殊方法也叫双下方法(dunder method)。 # 1.1 一摞Python风格的纸牌 # 示例 1-1 一摞有序的纸牌 import collections Card=collections.namedtuple('Card',['... 阅读全文
posted @ 2019-07-17 19:41 larken 阅读(333) 评论(0) 推荐(0) 编辑