Python 如何从字典中获取所有值的列表

Python 如何从字典中获取所有值的列表

在本文中,我们将展示几种方法来从Python字典中提取所有值的列表。使用以下方法,我们可以获得Python字典的所有值的列表:

  • 使用dict.values()和list()函数

  • 使用[]和*

  • 使用列表推导

  • 使用append()函数和For循环

假设我们已经拿到了一个示例字典。我们将使用上述不同的方法返回Python字典中的所有值的列表。

方法1:使用dict.values()和list()函数

要获取列表,我们可以将 dictionary.values() 与list()函数结合使用。values()方法用于访问键值对的值,然后使用list()函数将值转换为列表。

步骤

以下是执行所需任务的算法/步骤:

  • 创建一个变量来存储输入的字典

  • 通过将 values() 函数应用于输入的字典,并使用 list() 函数将结果转换为列表(将序列/可迭代对象转换为列表),打印字典的所有值的列表。

示例

以下程序使用len()函数返回列表的大小:

# input dictionary
demoDictionary = {10: 'TutorialsPoint', 12: 'Python', 14: 'Codes'}

# Printing the list of values of a dictionary using values() function
print(list(demoDictionary.values()))

输出

执行上面的程序后,将生成以下输出 –

['TutorialsPoint', 'Python', 'Codes']

方法2:使用[]和*

我们可以使用[]和*获取整个字典值列表。这里,values()是一个字典方法,用于从字典中的键值对中检索值,*用于获取值而不是字典的值,然后我们使用list()函数将其转换为列表。

步骤

以下是执行所需任务的算法/步骤:

  • 创建一个变量来存储输入的字典。

  • 使用 values() 函数(values()方法返回一个视图对象,该视图对象作为列表存储字典的值),[]和*运算符打印字典所有值的列表。

示例

以下程序使用[]和*运算符返回字典所有值的列表。

# input dictionary
demoDictionary = {10: 'TutorialsPoint', 12: 'Python', 14: 'Codes'}

# Printing the list of values of a dictionary with values() function
# and * operator
print([*demoDictionary.values()])

输出

执行以上程序后,将生成以下输出结果:

['TutorialsPoint', 'Python', 'Codes']

方法3:使用列表推导

为了找到值列表,该方法采用了列表推导的技术。它接受一个键作为输入,并使用for循环返回一个列表,其中包含列表中每个字典中键对应的值的每个出现。与其他方法相比,它更加优雅和Pythonic。

步骤

以下是执行所需任务的算法/步骤:

  • 创建一个变量来存储输入字典

  • 使用列表推导获取字典的所有值列表,通过遍历字典的每个值。

demoDictionary[dict_key] represents dictionary value
  • 打印输入字典的所有值的列表。

示例

以下程序使用列表推导方法返回字典的所有值的列表 –

# input dictionary
demoDictionary = {10: 'TutorialsPoint', 12: 'Python', 14: 'Codes'}

# Getting the list of values of the dictionary with the list comprehension
# demoDictionary[dict_key] represents dictionary value
dict_valuesList = [demoDictionary[dict_key] for dict_key in demoDictionary]

# Printing the list of all the values of a dictionary
print(dict_valuesList)

输出

在执行时,上述程序将生成以下输出:

['TutorialsPoint', 'Python', 'Codes']

方法4: 使用append()函数和For循环

步骤

以下是执行所需任务的算法/步骤:

  • 创建一个变量来存储输入的字典。

  • 创建一个空列表来存储输入字典的所有键。

  • 使用for循环,通过使用 values() 函数遍历字典的所有值(values()方法返回一个视图对象,将字典的值作为列表存储在视图对象中)。

  • 使用 append() 函数将字典的每个值添加到列表中(append()函数将元素添加到列表末尾),通过将相应的值作为参数传递给它。

  • 打印字典中所有值的列表。

示例

以下程序使用append()函数和For循环返回字典所有值的列表:

# input dictionary
demoDictionary = {10: 'TutorialsPoint', 12: 'Python', 14: 'Codes'}

# an empty list for storing dictionary values
dictValuesList = []

# Traversing through all the values of the dictionary
for dictValue in demoDictionary.values():

   # appending each value to the list
   dictValuesList.append(dictValue)

# Printing the list of values of a dictionary
print(dictValuesList)

输出

执行上述程序后,将生成以下输出结果 –

['TutorialsPoint', 'Python', 'Codes']

我们使用一个空列表来存储字典的值,然后遍历这些值,使用append()函数将它们添加到列表中,并显示它们。

结论

本文教我们如何使用values()函数获取整个字典的值,以及如何使用list()函数将字典的值转换为列表。此外,我们还学习了如何在同一段代码中使用列表推导和for循环,将values()方法返回的字典值转换为列表。最后,我们学习了如何使用append()函数将元素添加到列表中(这里我们添加了值到列表中)。

Camera课程

Python教程

Java教程

Web教程

数据库教程

图形图像教程

办公软件教程

Linux教程

计算机教程

大数据教程

开发工具教程