码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2016-05-15 15:20:34      阅读:865      评论:0      收藏:0      [点我收藏+]

标签:

描述

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

语法

items()方法语法:

dict.items()

  

参数

  • NA。

返回值

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

实例

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

#!/usr/bin/python

dict = {‘Name‘: ‘Zara‘, ‘Age‘: 7}

print "Value : %s" %  dict.items()

  

以上实例输出结果为:

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

  

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

标签:

原文地址:http://www.cnblogs.com/wushuaishuai/p/5495253.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!