📜  python 在列表中查找字符串 - Python (1)

📅  最后修改于: 2023-12-03 15:19:08.325000             🧑  作者: Mango

Python 在列表中查找字符串

在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