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={'abc@abc.org':1, 'bcd@bcd.org':2, 'efg@efg.org':3'}
The output should be, in the above example, ('efg@efg.org', 3)
Thank you for your time.