I have this set of values in a list of dictionaries in Python.
[
{'dep_price': '42.350', 'dep_date': '8-Mar-2017', 'trip_type': 'dep'},
{'dep_price': '42.350', 'dep_date': '9-Mar-2017', 'trip_type': 'dep'},
{'dep_price': '36.350', 'dep_date': '10-Mar-2017', 'trip_type': 'dep'}
]
How can I sort them based on field "dep_price" as a float value?