📜  Python Dict.items()方法

📅  最后修改于: 2020-10-30 05:21:50             🧑  作者: Mango

Python字典items()方法

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', 'rohan@abc.com')])

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 : rohan@abc.com), 
 dict_items([('name', 'rohan'), ('course', 'B.Tech'), ('email', 'rohan@abc.com')])