Python内置:items()方法

文章转载于:https://www.cnblogs.com/wushuaishuai/p/7738118.html(博主:IT技术随笔)

#Python3中已取消iteritems()方法

描述

Python 字典 items() 方法以列表形式(并非直接的列表,若要返回列表值还需调用list函数)返回可遍历的(键, 值) 元组数组。

语法

items() 方法语法:

1
D.items()

参数

  • 无。

返回值

以列表形式返回可遍历的(键, 值) 元组数组。

实例

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

1
2
3
4
5
6
7
8
9
10
# !/usr/bin/python3
 
= {'Google''www.google.com''Runoob''www.runoob.com''taobao''www.taobao.com'}
 
print("字典值 : %s" % D.items())
print("转换为列表 : %s" % list(D.items()))
 
# 遍历字典列表
for key, value in D.items():
    print(key, value)

以上实例输出结果为:

1
2
3
4
5
字典值 : D_items([('Google''www.google.com'), ('taobao''www.taobao.com'), ('Runoob''www.runoob.com')])
转换为列表 : [('Google''www.google.com'), ('taobao''www.taobao.com'), ('Runoob''www.runoob.com')]
Google www.google.com
taobao www.taobao.com
Runoob www.runoob.com
原文地址:https://www.cnblogs.com/volcao/p/8623848.html