在Python中,我们可以使用以下代码来检查一个列表中的单词是否在另一个字符串中:
def check_words_in_string(word_list, string):
for word in word_list:
if word in string:
print(f"{word} is present in the string.")
else:
print(f"{word} is not present in the string.")
# 示例用法
word_list = ["apple", "banana", "orange"]
string = "I like to eat apples and bananas."
check_words_in_string(word_list, string)
这段代码定义了一个名为check_words_in_string
的函数,它接受两个参数:word_list
和string
。word_list
是要检查的单词列表,string
是要检查的字符串。
函数使用for
循环遍历word_list
中的每个单词。对于每个单词,它使用in
关键字检查它是否在字符串string
中。如果单词存在于字符串中,它会打印出"{word} is present in the string.",否则打印"{word} is not present in the string."。
在示例用法中,我们定义了一个word_list
列表和一个string
字符串,并调用check_words_in_string
函数来检查word_list
中的单词是否在string
中。
请注意,这只是一个简单的示例,你可以根据实际需求进行修改和扩展。
云+社区沙龙online第5期[架构演进]
云+社区技术沙龙[第10期]
云+社区技术沙龙[第6期]
云+社区技术沙龙[第21期]
云+社区技术沙龙[第12期]
腾讯云GAME-TECH沙龙
serverless days
云+社区开发者大会(北京站)
领取专属 10元无门槛券
手把手带您无忧上云