Python 字典 items() 方法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 字典 items() 方法相关的知识,希望对你有一定的参考价值。

描述

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

语法

items()方法语法:

dict.items()

参数

  • NA。

返回值

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

实例

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

# !/usr/bin/python3

dict = {‘Google‘: ‘www.google.com‘, ‘Runoob‘: ‘www.runoob.com‘, ‘taobao‘: ‘www.taobao.com‘}

print("字典值 : %s" % dict.items())
print("转换为列表 : %s" % list(dict.items()))

# 遍历字典列表
for key, values in dict.items():
    print(key, values)

以上实例输出结果为:

字典值 : dict_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

以上是关于Python 字典 items() 方法的主要内容,如果未能解决你的问题,请参考以下文章

Python 字典items返回列表,iteritems返回迭代器

Python 字典 items() 方法

python字典-字典方法

37-python基础-python3-字典的常用方法-keys()-values()-items()

Python遍历字典去key和value需要注意的点→enumerate和items()

python字典方法