Python

使用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}
"""

原文地址:https://www.cnblogs.com/mthoutai/p/7158571.html