实例9:将两个列表转换为字典——非常实用的Python代码
当前位置:首页 > 技术交流
实例9:将两个列表转换为字典——非常实用的Python代码

本站编辑

2022/7/12 0:00:00

有两个列表,将列表A里的元素作为键,将列表B里的对应元素作为值,组成一个字典。

代码如下:

def list_to_dictionary(keys,values):
    return dict(zip(keys,values))
list1=[1,2,3]
list2=['one','two','three']
print(list_to_dictionary(list1,list2))



输出结果:

{1: 'one', 2: 'two', 3: 'three'}

还可以输入200个字

蝈蝈派【海南省教改项目(Hnjg2022-80)支持】 网站版权所有

Python remained the copyright of our website

吉公网安备 22020402000437号

备案号:吉ICP备2020005062号-2

关注QQ群

了解Python

实时动态