关于python:如何轻松检查列表中是否有内容?

How do you easily check if something is in a list?

本问题已经有最佳答案,请猛点这里访问。

如果名单上有"莱利"这个名字,我基本上必须印对或错…这就是我所拥有的:

1
2
3
4
if 'Riley' ??? names3:
    return True
else:
    return False


使用in关键字。

1
2
3
4
5
>>> names = ['Will', 'Dodd', 'Harry']
>>> print 'Will' in names
True
>>> print 'Barry' in names
False