Python案例100:列表转换为字典

Python案例100:列表转换为字典,第1张

概述列表转换为字典问题代码dict()函数问题题目:列表转换为字典。https://www.runoob.com/python/python-exercise-example100.html代码代码"""题目:列表转换为字典。"""#解题,dict()通过映射函数构造字典l1=[1,2,3]l2=["a","b","c"]dic1=dict(zip(l1,l2)

列表转换为字典问题代码dict()函数

问题

题目:列表转换为字典。
https://www.runoob.com/python/python-exercise-example100.html

代码代码
"""题目:列表转换为字典。"""# 解题,dict()通过映射函数构造字典l1=[1,2,3]l2=["a","b","c"]dic1=dict(zip(l1,l2))print(dic1,type(dic1))# dict()通过传入关键字构造字典dict2=dict(a1='a', b1='b', t1='t')print(dict2,type(dict2))# dict()传入可迭代对象构造字典dict3=dict([('one', 1), ('two', 2), ('three', 3)])print(dict3,type(dict3))
运行结果
{1: ‘a’, 2: ‘b’, 3: ‘c’} <class ‘dict’>
{‘a1’: ‘a’, ‘b1’: ‘b’, ‘t1’: ‘t’} <class ‘dict’>
{‘one’: 1, ‘two’: 2, ‘three’: 3} <class ‘dict’>dict()函数dict()通过传入关键字构造字典
dict2=dict(a1='a', b1='b', t1='t')print(dict2,type(dict2))
dict()通过映射函数构造字典
l1=[1,2,3]l2=["a","b","c"]dic1=dict(zip(l1,l2))print(dic1,type(dic1))
dict()传入可迭代对象构造字典
dict3=dict([('one', 1), ('two', 2), ('three', 3)])print(dict3,type(dict3))
总结

以上是内存溢出为你收集整理的Python案例100:列表转换为字典全部内容,希望文章能够帮你解决Python案例100:列表转换为字典所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1188401.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-03
下一篇 2022-06-03

发表评论

登录后才能评论

评论列表(0条)

保存