Tricks(二十四)—— python 复合(嵌套)数据结构
1. list of tuples 仿真dict这里的 tuple 一般为二元,仿真键值对[('name', 'zch'), ('age', 18)]2. list of lists 仿真矩阵3. dict of dict 仿真图这里表达的 dict of dict 可能不甚准确,嵌套字典也许会更恰当一些,说的是,外层字典的每一个 key 对应的 value 仍然是一个字典。此时访问具体元素时,仍然