python字典由value查key的三种方法

参考:
https://blog.csdn.net/ywx1832990/article/details/79145576
字典:

student = {'小萌': '1001', '小智': '1002', '小强': '1003', '小明': '1004'}

方法1

把字典列表化

list (student.keys()) [list (student.values()).index ('1004')]
'小明'

方法2

def get_key (dict, value):
    return [k for k, v in dict.items() if v == value]
get_key (student, '1002')

python字典由value查key的三种方法_第1张图片

方法3

把字典的key与val互换。

new_dict = {v : k for k, v in student.items()}

new_dict ['1001']
'小萌'

上面提到的三种方法其实作用很大,远不止就标题提到的功能。建议记忆下来,涉及到字典操作的时候大概率会用到这些操作。

你可能感兴趣的:(python)