Python - 两个列表(list)组成字典(dict)
Posted SpikeKing
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python - 两个列表(list)组成字典(dict)相关的知识,希望对你有一定的参考价值。
使用zip函数, 把key和value的list组合在一起, 再转成字典(dict).
代码:
# -*- coding: utf-8 -*-
keys = ['a', 'b', 'c']
values = [1, 2, 3]
dictionary = dict(zip(keys, values))
print dictionary
"""
输出:
'a': 1, 'c': 3, 'b': 2
"""
以上是关于Python - 两个列表(list)组成字典(dict)的主要内容,如果未能解决你的问题,请参考以下文章