python判断字符串在列表
时间: 2023-12-04 22:03:31 浏览: 73
要判断一个字符串是否在一个列表中,可以使用 `in` 关键字。例如:
```python
my_list = ['apple', 'banana', 'orange']
if 'apple' in my_list:
print('Yes')
else:
print('No')
```
输出:
```
Yes
```
如果要判断一个字符串不在列表中,可以使用 `not in` 关键字。例如:
```python
my_list = ['apple', 'banana', 'orange']
if 'watermelon' not in my_list:
print('No')
else:
print('Yes')
```
输出:
```
No
```
阅读全文