时间:2024-12-25 16:02:42
Python字典中如何根据值查找键?
根据值查找键的代码如下:#根据值查询对应的键 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 )
广州小漏斗信息技术有限公司 版权所有 沸点数码网 New Business Dream 粤ICP备20006251号