首页技术文章正文

遍历Python字典的几种方法

更新时间:2021-12-21 来源:黑马程序员 浏览量:

python字典

Python字典的for循环遍历

1.  遍历key的值

scores_dict = {'语文': 105, '数学': 140, '英语': 120}
for key in scores_dict:
print(key)
python字典遍历Key值

2.   遍历value的值

scores_dict = {'语文': 105, '数学': 140, '英语': 120}
for value in scores_dict.values():
    print(value)
python字典遍历vlaue值

3.  遍历字典键值对

scores_dict = {'语文': 105, '数学': 140, '英语': 120}
for key in scores_dict:
print(key + ":" + str(scores_dict[key]))    # 返回字符串
遍历字典
scores_dict = {'语文': 105, '数学': 140, '英语': 120}
for i in scores_dict.items():
print(i)    # 返回元组

遍历字典返回元组


scores_dict = {'语文': 105, '数学': 140, '英语': 120}
for key, value in scores_dict.items():
    print(key + ':' + str(value))
遍历字典键值对

2. Python字典视频教程

加QQ:435946716获取上面视频的全套资料【视频+笔记+源码】



猜你喜欢:

怎样修改和增加字典中的元素?

Python字典有哪些常见操作?

python中的字典如何使用?

Python下载和安装图文教程[超详细]【附赠19天全套Python视频教程】

黑马程序员Python+大数据开发课程

分享到:
在线咨询 我要报名
和我们在线交谈!