Python遍历字典的几种方式

  记录遍历字典的几种方式

#遍历字典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‘, ‘大碗宽面‘)

相关推荐