反转字典
反转具有唯一可哈希值的字典。
- 使用
dictionary.items()
结合列表推导式创建一个新的字典,将值和键反转。
def invert_dictionary(obj):
return { value: key for key, value in obj.items() }
ages = {
'Peter': 10,
'Isabel': 11,
'Anna': 9,
}
invert_dictionary(ages) # { 10: 'Peter', 11: 'Isabel', 9: 'Anna' }