我有一个字符串列表
["oranges", "POTATOES", "Pencils", "PAper"]
我想查找列表是否包含paper
,忽略大小写;所以下面的代码片段应该打印出来found
。我的列表只包含仅由英文字母组成的简单字符串——大写和小写。
item = 'paper'
stuff = ["oranges", "POTATOES", "Pencils", "PAper"]
if item in stuff:
print "found"
else:
print "Not found"
#How do I get the method to print "found"?
澄清:
我的列表实际上是一个列表列表,我的逻辑使用以下构造:
if not any ( item in x for x in stuff):
print "Not found"
else:
print "found"