I'm trying to get the dict key whose value is the maximum of all the dict's values.
I found two ways, both not elegant enough.
d= {'a':2,'b':5,'c':3}
# 1st way
print [k for k in d.keys() if d[k] == max(d.values())][0]
# 2nd way
print Counter(d).most_common(1)[0][0]
Is there a better approach?