Answers for "sort dictionary in python ordered dict"

14

sort list of dictionaries by key python

newlist = sorted(list_to_be_sorted, key=lambda k: k['name'])
Posted by: Guest on March-25-2020
0

python Ordered dict to dict

>>> from collections import OrderedDict
>>> dict(OrderedDict([('method', 'constant'), ('data', '1.225')]))
{'data': '1.225', 'method': 'constant'}
Posted by: Guest on July-08-2020

Python Answers by Framework

Browse Popular Code Answers by Language