Python3 字典 items() 方法

Python3 字典 items() 方法

描述

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

注意:

所以items()方法是字典的,不要在用列表或者元组使用items()了
所以items()方法是字典的,不要在用列表或者元组使用items()了
所以items()方法是字典的,不要在用列表或者元组使用items()了

语法

items()方法语法:

dict.items()

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

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

#python3
a = {"a": 1, "b": 2, "c": 3, "d": 4}

print(a.items())

以上实例输出结果为:

dict_items([('a', 1), ('b', 2), ('c', 3), ('d', 4)])
  • 例2:
#python3
a = {"a": 1, "b": 2, "c": 3, "d": 4}

for key,value in a.items():
    print("%s : %s" % (key, value))

以上实例输出结果为:

a : 1
b : 2
c : 3
d : 4

你可能感兴趣的:(python学习笔记)