python 查找word关键字
时间: 2023-08-17 20:04:22 浏览: 92
你可以使用Python中的字符串函数来查找一个字符串中是否包含另一个字符串。具体来说,你可以使用字符串的`find()`方法或`in`关键字来查找一个字符串中是否包含另一个字符串。例如,以下是一个简单的例子,演示如何使用`in`关键字来查找一个字符串中是否包含某个关键字:
```python
text = "This is a sample sentence containing the word 'word'."
if 'word' in text:
print("The text contains the word 'word'.")
else:
print("The text does not contain the word 'word'.")
```
输出结果为:
```
The text contains the word 'word'.
```
你也可以使用`find()`方法来查找一个字符串中是否包含某个关键字。`find()`方法返回第一个匹配项的索引,如果没有找到则返回-1。以下是一个使用`find()`方法的例子:
```python
text = "This is a sample sentence containing the word 'word'."
if text.find('word') != -1:
print("The text contains the word 'word'.")
else:
print("The text does not contain the word 'word'.")
```
输出结果与前面的例子相同:
```
The text contains the word 'word'.
```
阅读全文