I have a Python dictionary in a single file as follows:
{'weight': ['2', '23', '12', '65', '34', '55', '23', '23', '68', '101'],
'Age': ['35', '23', '14', '39'],
'Count': ['23', '335', '112', '33', '543']}
I would like to sort just one key/value e.g. Age to be 'Age': ['14', '23', '35', '39'].
The other keys/values to remain unchanged.
How to retrieve a single key and sort its values?
Tks