假设您在 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”的方式来使它更具可读性?