📅  最后修改于: 2023-12-03 15:26:49.492000             🧑  作者: Mango
如果你需要检查一个字符串中是否存在某个单词,Python可以轻松实现。 我们可以使用in关键字来检查单词是否存在于字符串中。
下面是实现此操作的Python代码示例:
def check_word_in_string(word, string):
"""
检查给定的单词是否存在于字符串中
"""
# 如果给定的单词存在于字符串中,返回True,否则返回False
return word in string
运行此代码示例并将单词和字符串作为参数传递,示例如下:
# 调用check_word_in_string函数
word = 'hello'
string = 'hello world'
result = check_word_in_string(word, string)
# 输出结果
print(result) # True
这将输出True,因为给定的单词“hello”存在于字符串“hello world”中。
请注意,此代码示例忽略了单词的大小写。 如果你需要区分大小写,你可以使用以下代码:
def check_word_in_string(word, string):
"""
检查给定的单词是否存在于字符串中
"""
# 如果给定的单词存在于字符串中,返回True,否则返回False
return word.lower() in string.lower()
此代码将单词和字符串转换为小写,并检查它们是否存在于字符串中。 这将使匹配不受大小写的影响。
以上是Python代码示例:检查给定的单词是否存在于字符串中。