python判断字符串不包含
时间: 2024-01-02 21:04:02 浏览: 198
Python检测字符串中是否包含某字符集合中的字符
可以使用关键字 `not` 配合 `in` 来判断字符串是否不包含某个子串,示例如下:
```python
s = 'hello world'
if 'python' not in s:
print('s does not contain "python"')
```
输出:
```
s does not contain "python"
```
阅读全文