Answers for "sorting a dictionary with lambda python"

4

sorted python lambda

lst = [('candy','30','100'), ('apple','10','200'), ('baby','20','300')]
lst.sort(key=lambda x:x[1])
print(lst)
Posted by: Guest on June-23-2020

Code answers related to "sorting a dictionary with lambda python"

Python Answers by Framework

Browse Popular Code Answers by Language