我試圖把多個條件,我在Python的if語句象下面這樣: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
和h10
在同一時間條件。
然而,這並不工作,並給出了這樣的錯誤:
IndentationError: unindent does not match any outer indentation level
什麼問題?
爲什麼不使用列表? – Ryan
如果是縮進,我們將需要更多的上下文... –
縮進和空白區[對Python如何解釋腳本很重要](https://en.wikipedia.org/wiki/Python_(programming_language)#Indentation)。你需要確保你在正確的空間中有標籤,一個編輯器爲你提供幫助是非常有幫助的。 –