判断字符串是否在列表中
时间: 2023-10-28 10:06:13 浏览: 81
判断某字符串是否存在
可以使用Python中的in关键字来判断一个字符串是否在列表中,示例如下:
```python
my_list = ['apple', 'banana', 'orange']
if 'apple' in my_list:
print('apple is in the list')
else:
print('apple is not in the list')
if 'pear' in my_list:
print('pear is in the list')
else:
print('pear is not in the list')
```
输出结果为:
```
apple is in the list
pear is not in the list
```
上述代码中,我们定义了一个包含三个水果名称的列表my_list,然后分别使用in关键字判断'apple'和'pear'是否在列表中。
阅读全文