Python程序:获取列表中所有唯一键的字典
当需要从字典列表中获取所有唯一的键时,需要迭代字典值并将其转换为一个集合。然后将其转换为一个列表并在控制台上显示。
示例
以下是同样的演示
my_list = [{'hi' : 11, 'there' : 28}, {'how' : 11, 'are' : 31}, {'you' : 28, 'Will':31}]
print("The list is:")
print(my_list)
my_result = list(set(value for dic in my_list for value in dic.values()))
print("The result is :")
print(my_result)
输出
The list is:
[{'there': 28, 'hi': 11}, {'how': 11, 'are': 31}, {'Will': 31, 'you': 28}]
The result is :
[11, 28, 31]
说明
-
定义了一个包含字典值的列表,并在控制台上显示它。
-
它被迭代,并且仅访问字典的“值”。
-
它转换为一个集合以仅保留唯一的值。
-
然后将其转换为一个列表并分配给一个变量。
-
这是在控制台上显示的输出。