How to access the key corresponding to the currently selected value from a selection menu that uses a dict?

I have the following piece of code:

select = param.Selector({'A':1, 'B': 2, 'C': 3}, label="Distribution")

But if I now type self.select it returns the currently selected numeric value. How can I return the letter used as key of the currently selected choice?