. . "Second, there is no simple syntax to do areverse lookup; you have to search.Here is a function that takes a value and returns the ???rst key that maps to that value:def reverse_lookup(d, v): for k in d: if d[k] == v: return k raise ValueError 126." . .