使用可能なメソッドを見つけようとしましたが、見つかりませんでした。 contains
はありません。 index
を使用する必要がありますか?アイテムが存在するかどうかを知りたいだけで、インデックスは必要ありません。
in
を使用します。
if element in thetuple:
#whatever you want to do.
if "Word" in str(Tuple):
# You can convert the Tuple to str too
私は同じ問題を抱えており、convert str()後にのみ働いた
それに注意してください:おっと返してください。 Set:d = {...}を使用します
def simha():
d = ('this_is_valid')
b = 'valid'
if b in d:
print("Oops!!!!!")
simha()