Python 字典(Dictionary) items()方法

Posted 云端筑梦师

tags:

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


欢迎关注本人博客:云端筑梦师

描述

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

语法

Dict.items()

参数

  • NA

返回值

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

实例

示例代码:

D = {\'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)

上述代码输出:

字典值 : [(\'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 字典(Dictionary) items()方法的主要内容,如果未能解决你的问题,请参考以下文章

Python 字典(Dictionary) update()方法

python 字典 dictionary

Python 字典(Dictionary)

Python 字典(Dictionary)

Python dictionary 字典

python---dictionary字典