当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python dict items()用法及代码示例


字典Python中的数据是一个无序的数据值集合,用于存储数据值(如Map),与其他仅将单个值作为元素的数据类型不同,Dictionary拥有 key:value对。

在Python字典中,items()方法用于返回带有所有带有值的字典键的列表。

用法: dictionary.items()

参数:此方法不带参数。

返回:一个视图对象,显示给定词典的(键,值)元组对的列表。

范例1:

# Python program to show working 
# of items() method in Dictionary 
  
# Dictionary with three items  
Dictionary1 = { 'A':'Geeks', 'B':4, 'C':'Geeks' } 
  
print("Dictionary items:") 
  
# Printing all the items of the Dictionary 
print(Dictionary1.items())

输出:

Dictionary items:
dict_items([('C', 'Geeks'), ('B', 4), ('A', 'Geeks')])

这些项目在列表中的顺序可能并不总是相同。

范例2:显示修改字典后items()的工作。

# Python program to show working 
# of items() method in Dictionary 
  
# Dictionary with three items  
Dictionary1 = { 'A':'Geeks', 'B':4, 'C':'Geeks' } 
  
print("Original Dictionary items:") 
  
items = Dictionary1.items() 
  
# Printing all the items of the Dictionary 
print(items) 
  
# Delete an item from dictionary 
del[Dictionary1['C']] 
print('Updated Dictionary:') 
print(items)

输出:

Original Dictionary items:
dict_items([('A', 'Geeks'), ('C', 'Geeks'), ('B', 4)])
Updated Dictionary:
dict_items([('A', 'Geeks'), ('B', 4)])

如果字典随时更新,则更改将自动反映在视图对象中。



相关用法


注:本文由纯净天空筛选整理自Akanksha_Rai大神的英文原创作品 Python Dictionary | items() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。