Python:从两个列表到一个字典
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python:从两个列表到一个字典相关的知识,希望对你有一定的参考价值。
create a dictionary from the data in two lists
# [PSST] Copied for good measure ListA = ['10', '10', '20', '20', '20', '24'] ListB = ['23', '44', '11', '19', '57', '3'] d = {} for a, b in map(None, ListA, ListB): if not d.has_key(a): d[a] = [b] else: d[a].append(b) print d # result: {'24': ['3'], '10': ['23', '44'], '20': ['11', '19', '57']}
以上是关于Python:从两个列表到一个字典的主要内容,如果未能解决你的问题,请参考以下文章