问题:Python创建列表字典
我想创建一个字典,其值为列表。例如:
{
1: ['1'],
2: ['1','2'],
3: ['2']
}
如果我做:
d = dict()
a = ['1', '2']
for i in a:
for j in range(int(i), int(i) + 2):
d[j].append(i)
我收到一个KeyError,因为d […]不是列表。在这种情况下,我可以在分配a后添加以下代码以初始化字典。
for x in range(1, 4):
d[x] = list()
有一个更好的方法吗?可以说,直到进入第二个for
循环,我才知道需要的键。例如:
class relation:
scope_list = list()
...
d = dict()
for relation in relation_list:
for scope_item in relation.scope_list:
d[scope_item].append(relation)
然后可以替代
d[scope_item].append(relation)
与
if d.has_key(scope_item):
d[scope_item].append(relation)
else:
d[scope_item] = [relation,]
处理此问题的最佳方法是什么?理想情况下,追加将“有效”。有什么方法可以表达我想要空列表的字典,即使我第一次创建列表时也不知道每个键?
回答 0
您可以使用defaultdict:
>>> from collections import defaultdict
>>> d = defaultdict(list)
>>> a = ['1', '2']
>>> for i in a:
... for j in range(int(i), int(i) + 2):
... d[j].append(i)
...
>>> d
defaultdict(<type 'list'>, {1: ['1'], 2: ['1', '2'], 3: ['2']})
>>> d.items()
[(1, ['1']), (2, ['1', '2']), (3, ['2'])]
回答 1
您可以使用列表理解来构建它,如下所示:
>>> dict((i, range(int(i), int(i) + 2)) for i in ['1', '2'])
{'1': [1, 2], '2': [2, 3]}
对于问题的第二部分,请使用defaultdict
>>> from collections import defaultdict
>>> s = [('yellow', 1), ('blue', 2), ('yellow', 3), ('blue', 4), ('red', 1)]
>>> d = defaultdict(list)
>>> for k, v in s:
d[k].append(v)
>>> d.items()
[('blue', [2, 4]), ('red', [1]), ('yellow', [1, 3])]
回答 2
您可以使用setdefault
:
d = dict()
a = ['1', '2']
for i in a:
for j in range(int(i), int(i) + 2):
d.setdefault(j, []).append(i)
print d # prints {1: ['1'], 2: ['1', '2'], 3: ['2']}
这个名称很奇怪的setdefault
函数说:“使用此键获取值,或者如果该键不存在,则添加该值,然后将其返回。”
正如其他人正确指出的那样,这defaultdict
是一个更好,更现代的选择。 setdefault
在旧版本的Python(2.5之前的版本)中仍然有用。
回答 3
您的问题已得到解答,但是IIRC您可以替换以下行:
if d.has_key(scope_item):
与:
if scope_item in d:
也就是说,该构造中的d
参考d.keys()
。有时defaultdict
并不是最好的选择(例如,如果您想在else
与上面的内容关联后执行多行代码if
),并且我发现in
语法更易于阅读。
回答 4
就个人而言,我只是使用JSON将内容转换为字符串然后返回。我了解的字符串。
import json
s = [('yellow', 1), ('blue', 2), ('yellow', 3), ('blue', 4), ('red', 1)]
mydict = {}
hash = json.dumps(s)
mydict[hash] = "whatever"
print mydict
#{'[["yellow", 1], ["blue", 2], ["yellow", 3], ["blue", 4], ["red", 1]]': 'whatever'}
回答 5
简单的方法是:
a = [1,2]
d = {}
for i in a:
d[i]=[i, ]
print(d)
{'1': [1, ], '2':[2, ]}
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。