当前位置:Gxlcms > Python > Python基础入门之items()方法

Python基础入门之items()方法

时间:2021-07-01 10:21:17 帮助过:58人阅读

描述

Python 字典(Dictionary) items() 函数以列表返回可遍历的(键, 值) 元组数组。

语法

items()方法语法:

dict.items()

参数

NA。

返回值

返回可遍历的(键, 值) 元组数组。

实例

以下实例展示了 items()函数的使用方法:

#!/usr/bin/pythondict = {'Name': 'Zara', 'Age': 7}
print "Value : %s" %  dict.items()

以上实例输出结果为:

Value : [('Age', 7), ('Name', 'Zara')]

【相关推荐】

1. 特别推荐:“php程序员工具箱”V0.1版本下载

2. Python免费视频教程

3. Python中的item()函数遍历字典的实例

4. Python中items()系列函数的用法详解

5. 介绍三种访问字典的方法

6. Python基础入门之items()方法

以上就是Python基础入门之items()方法的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行