我试图在 Python 中的 if 语句中放置多个条件,如下所示:
if (h9 == h1 or h9 == h2 or h9 == h3 or h9 == h4 or h9 == h5 or h9 == h6 or h9 == h7 or h9 == h8) and (h10 == h1 or h10 == h2 or h10 == h3 or h10 == h4 or h10 == h5 or h10 == h6 or h10 == h7 or h10 == h8) :
do sth.
h9
基本上它同时是两者的OR 条件h10
。
但是,这不起作用,并给出如下错误:
IndentationError: unindent does not match any outer indentation level
有什么问题?