Dictionary:
d = {u'A': 240, u'B': 242, u'C': 243}
I have successfully managed to identify the lowest key using the following code:
min_ = min(d, key=d.get)
Output:
A
I'd like to make the output contain the value as well:
A, 240
Note:
I'd like to avoid the use of lambda
if possible