python判断字符串包含 取反
时间: 2023-12-29 09:06:45 浏览: 95
python判断含有某字符串的文件
以下是Python判断字符串包含取反的例子:
```python
a = "hello world"
if "why" not in a:
print("why not in a") # 输出:why not in a
```
在上面的例子中,我们首先定义了一个字符串a,然后使用not in操作符判断字符串a中是否包含子串"why",由于不包含,所以输出了"why not in a"。
--相关问题--:
1. Python中如何判断字符串是否以指定的子串开头或结尾?
2. Python中如何将字符串
阅读全文