python 查找word关键字
时间: 2023-08-16 18:07:35 浏览: 87
Python关键词查找
可以使用Python内置的字符串方法来查找关键字,比如使用 `find()` 方法或 `in` 关键字。以下是示例代码:
```python
# 使用 find() 方法查找关键字
text = "This is a sample text containing the word keyword."
keyword = "word"
if text.find(keyword) != -1:
print("Keyword found!")
else:
print("Keyword not found.")
# 使用 in 关键字查找关键字
text = "This is a sample text containing the word keyword."
keyword = "word"
if keyword in text:
print("Keyword found!")
else:
print("Keyword not found.")
```
以上代码将输出 "Keyword found!",因为文本中包含关键字 "word"。
阅读全文