两个列表提取作为字典,dict(zip(list1, list2))
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# @Author:九九的金金子
list1 = ["a", "b"]
list2 = [1, 2]
print(dict(zip(list1, list2)))
运行结果:{'a': 1, 'b': 2}
本文介绍了如何使用Python的zip函数和dict()构造函数,将两个列表快速组合成字典,以'list1'的元素为键,'list2'的元素为值,实例演示了'a'到'1','b'到'2'的映射。
两个列表提取作为字典,dict(zip(list1, list2))
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# @Author:九九的金金子
list1 = ["a", "b"]
list2 = [1, 2]
print(dict(zip(list1, list2)))
运行结果:{'a': 1, 'b': 2}
719

被折叠的 条评论
为什么被折叠?