25

我试图找到可用的方法,但找不到。没有contains。我应该使用index吗?我只想知道该项目是否存在,不需要它的索引。

4

3 回答 3

73

你用in.

if element in thetuple:
    #whatever you want to do.
于 2013-07-29T09:18:35.807 回答
6
if "word" in str(tuple):
# You can convert the tuple to str too

我有同样的问题,只有在转换 str() 后才对我有用

于 2019-09-01T23:03:55.313 回答
0

请注意:返回糟糕。使用集合:d= {...}

def simha():
    d = ('this_is_valid')
    b = 'valid'
    if b in d:
        print("Oops!!!!!")


simha()
于 2018-01-07T15:55:09.733 回答