使用python判断字符转是否含有某个字符
时间: 2023-12-03 16:02:42 浏览: 97
可以使用 Python 中的 `in` 关键字来判断一个字符串是否包含某个字符。例如:
```python
string = "Hello, World!"
char = "o"
if char in string:
print("The string contains the character.")
else:
print("The string does not contain the character.")
```
输出:
```
The string contains the character.
```
在上面的代码中,我们判断字符串 `string` 是否包含字符 `o`。如果包含,则输出字符串 `"The string contains the character."`;否则输出字符串 `"The string does not contain the character."`。
阅读全文