Python快速人名查找

360影视 国产动漫 2025-03-19 18:43 4

摘要:def quick_name_search(names, query):# 将输入的人名字符串按逗号分隔成列表name_list = names.split(',')# 去除每个名字的前后空格name_list = [name.strip for name i

def quick_name_search(names, query):# 将输入的人名字符串按逗号分隔成列表name_list = names.split(',')# 去除每个名字的前后空格name_list = [name.strip for name in name_list]# 遍历每个人名for name in name_list:# 将人名按空格分隔成单词列表words = name.split# 检查单词数量是否与查询字符串的长度一致if len(words) != len(query):continue# 检查每个单词的前缀是否与查询字符串的对应字符匹配match = Truefor i in range(len(words)):if not words[i].startswith(query[i]):match = Falsebreakif match:return namereturn "No"# 读取输入names = input.stripquery = input.strip# 计算并输出结果print(quick_name_search(names, query))

来源:伟诚教育

相关推荐