python判断字符串包含
时间: 2023-10-17 18:07:05 浏览: 77
可以用 `in` 关键字来判断字符串是否包含另一个字符串,示例如下:
```python
string1 = "hello world"
string2 = "world"
if string2 in string1:
print("string2 is in string1")
else:
print("string2 is not in string1")
```
输出结果为:`string2 is in string1`
如果要忽略大小写,可以先把两个字符串都转成小写或大写再进行比较,示例如下:
```python
string1 = "hello world"
string2 = "WO"
if string2.lower() in string1.lower():
print("string2 is in string1")
else:
print("string2 is not in string1")
```
输出结果为:`string2 is in string1`
相关问题
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中如何将字符串
python判断字符串不包含
可以使用关键字 `not` 配合 `in` 来判断字符串是否不包含某个子串,示例如下:
```python
s = 'hello world'
if 'python' not in s:
print('s does not contain "python"')
```
输出:
```
s does not contain "python"
```
阅读全文