python寻找词汇
时间: 2023-11-23 12:57:32 浏览: 79
用python查找单词
以下是使用Python寻找词汇的例子:
```python
# 定义一个字符串
text = "Python is a popular programming language. It was created by Guido van Rossum in 1991."
# 判断字符串中是否包含指定的词汇
if "Python" in text:
print("The word 'Python' is found in the text.")
else:
print("The word 'Python' is not found in the text.")
```
上述代码中,我们首先定义了一个字符串变量`text`,然后使用`in`关键字判断该字符串中是否包含指定的词汇。如果包含,则输出相应的提示信息;否则输出另一条提示信息。
阅读全文