Python的“二维”字典 (two-dimension dictionary)定义与实现方法

时间:2024-02-09 22:08:34
【文件属性】:

文件名称:Python的“二维”字典 (two-dimension dictionary)定义与实现方法

文件大小:51KB

文件格式:PDF

更新时间:2024-02-09 22:08:34

ar c dim

本文实例讲述了Python的“二维”字典 (two-dimension dictionary)定义与实现方法。分享给大家供大家参考,具体如下: Python 中的dict可以实现迅速查找。那么有没有像数组有二维数组一样,有二维的字典呢?比如我需要对两个关键词进行查找的时候。2D dict 可以通过 dict_2d = {'a': {'a': 1, 'b': 3}, 'b': {'a': 6}} 来建立,并通过 dict_2d['a']['b'] 来访问。但是添加一个新的 “key-value”对却比较复杂。对一维字典,可以用 dict_1d = dict() dict_1d['a']


网友评论