Answers for "Python find max in list of dict by value"

0

Python find max in list of dict by value

lst = [{'price': 99, 'barcode': '2342355'}, {'price': 88, 'barcode': '2345566'}]

maxPricedItem = max(lst, key=lambda x:x['price'])
minPricedItem = min(lst, key=lambda x:x['price'])
Posted by: Guest on September-29-2021

Code answers related to "Python find max in list of dict by value"

Python Answers by Framework

Browse Popular Code Answers by Language