例如:
返回字典的key和value对:
car = {
"brand": "Ford",
"model": "Mustang",
"year": 1964
}
x = car.items()
print(x)
1、定义和用法
items()
方法以列表形式(并非直接的列表,若要返回列表值还需调用list函数转换)返回可遍历的(key, vaue) 元组数组。
2、调用语法
dictionary.items()
3、参数说明
没有参数
4、使用示例
例如:
当字典中的元素更改值时,car.items()返回对象也会被更新:
car = {
"brand": "Ford",
"model": "Mustang",
"year": 1964
}
x = car.items()
car["year"] = 2018
print(x)