Python で次のような if ステートメントがあるとします。
if not "string1" in item and not "string2" in item and not "string3" in item and not "string4" in item:
doSomething(item)
if ステートメントを複数の行に分割する方法はありますか? このような:
if not "string1" in item
and not "string2" in item
and not "string3 in item
and not "string4" in item:
doSomething(item)
これは可能ですか?これを読みやすくする別のより「pythonic」な方法はありますか?