【Python】实战:使用input()从键盘获取一个字符串,判断这个字符串在列表中是否存在(函数体不能使用in),返回结果为True或False
使用input()从键盘获取一个字符串,判断这个字符串在列表中是否存在(函数体不能使用in),返回结果为True或False
def exists_in_list(input_string, str_list):
# 遍历列表中的每个元素
for item in str_list:
if item == input_string: # 如果当前元素等于输入的字符串
return True # 找到匹配项,返回 True
return False # 遍历完列表都没有找到,返回 False
# 从键盘获取字符串
user_input = input("请输入一个字符串:")
# 示例列表
sample_list = ["apple", "banana", "orange", "grape","hello"]
# 调用函数并获取结果
result = exists_in_list(user_input, sample_list)
# 输出结果
print("字符串是否在列表中存在:", result)
代码解释
函数定义:
exists_in_list 函数接收两个参数:要查找的字符串和待检查的列表。
使用 for 循环遍历列表的每个元素,并通过 == 运算符进行比较。
获取用户输入:
使用 input() 函数从键盘获取用户输入的字符串。
示例列表:
定义一个示例的字符串列表 sample_list,用于检查用户输入的字符串是否存在。
输出结果:
调用 exists_in_list 函数,将用户输入和列表作为参数传入,并打印结果。
示例运行
如果用户输入 "banana",且 sample_list 为 ["apple", "banana", "orange", "grape"],则输出将为:
字符串是否在列表中存在: True
如果用户输入 "kiwi",则输出将为:
字符串是否在列表中存在: False