The dictionary:
sales_year = {"1998": 3124, "1999": 234, "2001": 7214, "2002": 789}
How can I return the key-value pair of which the value is the highest? In this case it should return:
("2001", 7214)
Is there any function like "max()" which is as simple as possible?