python では、in キーワードと not in キーワードを使用して、list に要素
pythontab = ['p','y','t','h','o','n','t','a','b'] if 't' in pythontab: print 't in pythontab' if 'w' not in pythontab: print 'w is not in pythontab'が含まれているかどうかを判断できます。in と not in は非常に一般的に使用されるキーワードです。
以上がPython を使用してリストに要素が含まれているかどうかを判断する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。