时间:2020-12-23 python爬虫 查看: 1016
这篇文章主要介绍了Python遍历字典方式就实例详解,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
“ 记录遍历字典的几种方式”
dict1={'name':'吴亦凡','age':'29','native':'广州','opus':'大碗宽面'}
#遍历字典key值---方法1
for key in dict1:
print(key)
# 遍历字典key值---方法2
for key in dict1.keys():
print(key)
#遍历字典value值
for value in dict1.values():
print(value)
#遍历字典中的元素
for item in dict1.items():
print(item)
输出结果:
#遍历字典key值---方法1
name
age
native
opus
#遍历字典key值---方法2
name
age
native
opus
#遍历字典value值
吴亦凡
29
广州
大碗宽面
#遍历字典中的元素
('name', '吴亦凡')
('age', '29')
('native', '广州')
('opus', '大碗宽面')
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持python博客。