python-如何解决KeyError:2?

时间:2016-02-14 11:14:05

标签: python dictionary keyerror

我有一个格式为{int:[]}

的字典

当我尝试将值设置为值列表为NULL的键值对时,我得到了KeyError: 2

tags = {}
tags.setdefault(int,[])
for tag_id in (db.session.query(PostTagRel).filter(PostTagRel.id == post_id).first().tag_id.split(',')):
            tag = db.session.query(Tag).filter(Tag.tag_id == tag_id).first().tag_name
            tags[post_id].append(tag)

我该怎么办?

1 个答案:

答案 0 :(得分:3)

要为所有键设置常规默认值,您可以使用defaultdict

from collections import defaultdict

d = defaultdict(list)    
d[0].append(1)