Python–使用有序值过滤字典
原文:https://www . geesforgeks . org/python-filter-dictionary-with-ordered-values/
给定字典列表,任务是编写一个 python 程序来过滤具有递增顺序(即排序)值的字典。
示例:
输入 : test_list = [{'gfg' : 2,' is' : 8,' good' : 10}、{'gfg' : 1,' for' : 10、' geeks' : 9}、{'love' : 3、' gfg' : 4}] 输出 : [{'gfg': 2、' is': 8、' good': 10}、{'love': 3、' gfg': 4}] 解释 : 2、8、10 依次递增。
输入 : test_list = [{'gfg' : 2,' is' : 8,' good' : 10},{'gfg' : 1,' for' : 10,' geeks' : 9},{'love' : 4,' gfg' : 3}] 输出 : [{'gfg': 2,' is': 8,' good': 10}] 解释 : 2,8,10 依次递增。
在本文中,我们使用 sorted()执行排序任务,并使用 values()提取值,使用列表理解来执行所有字典的迭代。
Python 3
# Python3 code to demonstrate working of
# Filter dictionaries with ordered values
# Using sorted() + values() + list comprehension
# initializing list
test_list = [{'gfg': 2, 'is': 8, 'good': 10},
{'gfg': 1, 'for': 10, 'geeks': 9},
{'love': 3, 'gfg': 4}]
# printing original list
print("The original list is : " + str(test_list))
# sorted to check with ordered values
# values() extracting dictionary values
res = [sub for sub in test_list if sorted(
list(sub.values())) == list(sub.values())]
# printing result
print("The filtered Dictionaries : " + str(res))
输出:
原始列表为:[{'gfg': 2,' is': 8,' good': 10},{'gfg': 1,' for': 10,' geeks': 9},{'love': 3,' gfg': 4}] 筛选后的词典:[{'gfg': 2,' is': 8,' good': 10},{'love': 3,' gfg': 4}]
在本例中,我们使用 filter()执行过滤任务,lambda 函数用于执行注入检查递增值所需的功能的任务。
Python 3
# Python3 code to demonstrate working of
# Filter dictionaries with ordered values
# Using filter() + lambda + sorted()
# initializing list
test_list = [{'gfg': 2, 'is': 8, 'good': 10},
{'gfg': 1, 'for': 10, 'geeks': 9},
{'love': 3, 'gfg': 4}]
# printing original list
print("The original list is : " + str(test_list))
# sorted to check with ordered values
# values() extracting dictionary values
# filter() and lambda function used to filter
res = list(filter(lambda sub: sorted(list(sub.values()))
== list(sub.values()), test_list))
# printing result
print("The filtered Dictionaries : " + str(res))
输出:
原始列表为:[{'gfg': 2,' is': 8,' good': 10},{'gfg': 1,' for': 10,' geeks': 9},{'love': 3,' gfg': 4}] 筛选后的词典:[{'gfg': 2,' is': 8,' good': 10},{'love': 3,' gfg': 4}]
版权属于:月萌API www.moonapi.com,转载请注明出处