i have the following dictionary of items in Python, but i want to sort the dictionary in order based on the value of a selected key. in this case score, i want the lowest number to be at the top so i can then select that item from the dictionary to be processed
[
{
"id": 1928430,
"score": 0.5030304,
"name": "John"
},
{
"id": 7283849,
"score": 0.2030304,
"name": "Sam"
},
{
"id": 8384954,
"score": 0.3030304,
"name": "Steven"
}
]