📅  最后修改于: 2023-12-03 15:19:08.325000             🧑  作者: Mango
在Python中,可以使用in
关键字来查找一个字符串是否在列表中。下面是一个例子:
strings = ['apple', 'banana', 'cherry']
if 'banana' in strings:
print('banana is in the list')
输出为:banana is in the list
如果想要查找的字符串不在列表中,可以使用not in
关键字。下面是一个例子:
strings = ['apple', 'banana', 'cherry']
if 'orange' not in strings:
print('orange is not in the list')
输出为:orange is not in the list
如果想要在列表中查找包含特定字符的字符串,可以使用for
循环和if
条件语句。下面是一个例子:
strings = ['apple', 'banana', 'cherry']
for s in strings:
if 'a' in s:
print(s)
输出为:
apple
banana