Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我看过一个index函数,但如果找不到它就会出错。有没有一种简单的方法来检查项目是否存在?我只想获得结果的布尔值,例如:
index
if tuple.exists("item"): print "it exists"
使用in运算符:
in
>>> 2 in (2, 3, 4) True
in运算符可用于检查序列中任何元素的成员资格。
并且不要将您的元组命名为tuple. 使用不同的名称。
tuple