i have a list of dictionary like.
players_score = [{'playerID': 'bondsba01', 'score': 771.0309445542441},
{'playerID': 'brookhu01', 'score': 334.40601958915977},
{'playerID': 'jamesbo01', 'score': 885.9822344322345},
{'playerID': 'hassero01', 'score': 593.022015503876},
{'playerID': 'addybo01', 'score': 785.2226861630111},
{'playerID': 'cedence01', 'score': 75.7351748570627},
{'playerID': 'eckerde01', 'score': 787.7921476129764},
{'playerID': 'wockejo01', 'score': 674.6701980001981}]
How can i find the 5 largest score and player ID from here using python. Thanks