标签: python list collections tuples
我看过一个index函数,但是如果它找不到它就会出错。有没有一种简单的方法来检查项目是否存在?我只想获得结果的布尔值,如:
index
if tuple.exists("item"): print "it exists"
答案 0 :(得分:17)
使用in运算符:
in
>>> 2 in (2, 3, 4) True
in运算符可用于检查序列中任何元素的成员资格。
并且不要将您的元组命名为tuple。使用其他名称。
tuple