Python item() 方法返回字典的新视图。此视图是键值元组的集合。此方法不带任何参数,如果字典为空则返回空视图。下面给出了示例和语法。
签名
items()
参数
没有参数
返回
它返回字典的视图。
让我们看一些 items() 方法的例子来了解它的函数。
Python字典items()方法示例1
这是一个简单的例子,它返回字典中存在的所有项目。
# Python dictionary items() Method
# Creating a dictionary
student = {'name':'rohan', 'course':'B.Tech', 'email':'rohan@abc.com'}
# Calling function
items = student.items()
# Displaying result
print(items)
输出:
dict_items([('name', 'rohan'), ('course', 'B.Tech'), ('email', '[email protected]')])
Python字典items()方法示例2
如果字典已经为空,则此方法不会引发任何错误。请参阅下面的示例。
# Python dictionary items() Method
# Creating a dictionary
student = {} # dictionary is empty
# Calling function
items = student.items()
# Displaying result
print(items)
输出:
dict_items([])
Python字典items()方法示例3
除了 items() 方法,我们还可以使用其他自定义方法来获取字典元素。请参阅下面的示例。
# Python dictionary items() Method
# Creating a dictionary
student = {'name':'rohan', 'course':'B.Tech', 'email':'rohan@abc.com'}
# Iterating using key and value
for st in student:
print("(",st, ":", student[st], end="), ")
# Calling function
items = student.items()
# Displaying result
print("\n", items)
输出:
( name:rohan), ( course:B.Tech), ( email:[email protected]), dict_items([('name', 'rohan'), ('course', 'B.Tech'), ('email', '[email protected]')])
相关用法
- Python Dictionary items()用法及代码示例
- Python Dictionary fromkeys()用法及代码示例
- Python Dictionary clear()用法及代码示例
- Python Dictionary update()用法及代码示例
- Python Dictionary pop()用法及代码示例
- Python Dictionary setdefault()用法及代码示例
- Python Dictionary popitem()用法及代码示例
- Python Dictionary has_key()用法及代码示例
- Python Dictionary get()用法及代码示例
- Python Dictionary copy()用法及代码示例
- Python Dictionary keys()用法及代码示例
- Python Dictionary values()用法及代码示例
- Python Decimal shift()用法及代码示例
- Python Decimal next_plus()用法及代码示例
- Python Decimal logical_and()用法及代码示例
- Python Decimal rotate()用法及代码示例
- Python Decimal max_mag()用法及代码示例
- Python Datetime.replace()用法及代码示例
- Python Decimal as_integer_ratio()用法及代码示例
- Python DataFrame.to_excel()用法及代码示例
注:本文由纯净天空筛选整理自 Python Dictionary items() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。