My goal is to do the following:
Evaluate the existing dictionary using [key(string), item(int), format]
and find the item in the dictionary with highest value in key-value pair.
Output the corresponding item (i.e. key value) with the highest value
For example consider the following code:
emails={}
emails={'[email protected]':1, '[email protected]':2, '[email protected]':3'}
The output should be, in the above example, ('[email protected]', 3)
Thank you for your time.