【说站】python dict.item()方法遍历字典
2024-12-17
2
python dict.item()方法遍历字典
dict.item()方法返回由一个二元元组成的dict_item类型对象,dict_item类型可以通过,但不能改变。
二元元组由字典的键值对组成。
实例
a = {'张无忌': 25, '赵敏': 24} print(a.items()) print(type(a.items())) for item in a.items(): # item对象由元组构成 print(item) print(type(item)) for key, value in a.items(): # 元组由键值对构成 print(key, value) print(type(key), type(value))
以上就是python dict.item()方法遍历字典的方法,希望对大家有所帮助。更多Python学习指路:python基础教程
推荐操作环境:windows7系统、Python 3.9.1,DELL G3电脑。
更新于:1天前赞一波!1
相关文章
- 【说站】python字符串中有哪些方法
- 【说站】python列表添加和删除的方法
- 【说站】python字符串方法format()如何使用
- 【说站】JavaScript垃圾回收的两种方法
- 【说站】python有几种排序的方法
- js 数组方法 - 修改篇
- 【说站】python迭代器协议支持的两种方法
- 【说站】Python测试前置操作的方法
- 【说站】python socket连接客户端的方法
- JavaScript中字典的常用操作
- 【说站】js中every方法怎么用?
- 【说站】js some方法是什么
- 【说站】java静态方法和非静态方法的介绍
- 【说站】JavaScript数组有哪些遍历方法
- 【说站】python静态方法如何定义
- 【说站】python特殊方法有哪些
- 【说站】python类方法如何定义
- 【说站】python中如何遍历目录树
- 【说站】python用circle函数画兔子的方法
- 【说站】css设置行间距的方法
文章评论
评论问答