使用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}
"""
版权声明:本文为博主原创文章,未经博主允许不得转载。
原文地址:http://blog.csdn.net/caroline_wendy/article/details/47060459