I'm trying to use dictionary with multiple keys assigned to one value.
For example:
my_arg = 'MARY'
my_dict = {('Al','AMY','45'): 'ZONE1',
(56,'LO','MARY','ELM'): 'ZONE2',
(75,'SF','KIM','CORE'): 'ZONE3'}
I need to get the value if one passed argument matches one of the keys.