字典中的value不保证唯一性,因此根据值查出来的是一个list。不过字典中key的值是唯一的,因此根据key将可以查到唯一的一个value。
根据值查找键的代码如下:
#根据值查询对应的键 key_list = [] value_list = [] mydisc = {'key1':'123','key2':'234','key3':'345'} for key,value in mydisc.items(): key_list.append(key) value_list.append(value) get_value = input("请输入要查值:") if get_value in value_list: get_value_index = value_list.index(get_value) print("你要查询的值对应的键为:%s"%key_list[get_value_index]) else: print("你要查询的值%s不存在"%get_value)
运行结果如下:
神龙|纯净稳定代理IP免费测试>>>>>>>>天启|企业级代理IP免费测试>>>>>>>>IPIPGO|全球住宅代理IP免费测试