我知道這是一個常見問題,但我必須重申這一個,因爲我已經使用了「已驗證」的方法,但都沒有工作。起初我認爲這將是一個間距問題,因爲默認情況下,atom(我正在使用的文本編輯器)在每個選項卡中有2個空格。將其更新爲4並重新標記所有內容並得到相同的錯誤。我回去了,在每行需要縮進之前放4個空格,但這樣做效果不佳。有什麼建議麼?Python:IndentationError:預計一個縮進塊
-1
A
回答
0
您可以通過4個空間需要縮進線25,因爲它是一個if子句中。
順便說一句,那是什麼編輯器?
+1
Atom by Git .... –
0
正如錯誤所示,第25行需要進行構建,但事實並非如此。這是上面的if
聲明的主體。
if True:
pass
# if body
不管你if
條件多少線,:
後,你需要IDENT。
相關問題
- 1. Python說:「預計一個縮進塊」
- 2. python IndentationError:預計一個縮進塊
- 3. IndentationError:預計有一個縮進塊
- 4. IndentationError:預計有一個縮進塊
- 5. Python - IndentationError:預計一個縮進塊
- 6. 預計一個縮進塊蟒蛇choregraphe
- 7. 的Python:IndentationError:意外縮進
- 8. 預計縮進塊 - python
- 9. Python「預計有縮進塊」
- 10. 預計縮進塊在Python
- 11. IndentationError:預計縮進塊13
- 12. IndentationError:預計縮進塊10
- 13. IndentationError:預計在縮進塊的縮進塊
- 14. Python - IndentationError:預計在一個縮進塊如果
- 15. RaspberryPi Python IndentationError:預計有一個縮進塊
- 16. IndentationError:預計一個縮進塊(Django和Python)
- 17. 錯誤:預計會出現縮進塊
- 18. 媒體IndentationError:預計縮進塊
- 19. IndentationError:預計縮進塊[python]的
- 20. Python的錯誤:IndentationError:預計縮進塊
- 21. 預計會出現縮進塊錯誤
- 22. 預計Python遊戲中的縮進塊
- 23. SyntaxError:預計會出現縮進塊
- 24. 預計在Python中的縮進塊
- 25. 預計縮進塊if語句
- 26. 「預計縮進塊錯誤」在Python
- 27. IndentationError:預計縮進塊(蟒蛇codeacademy)
- 28. Crapy錯誤IndentationError:預計縮進塊
- 29. 「預計縮進塊」的錯誤說明
- 30. 縮進錯誤:預計縮進塊python 3.6
此代碼直接出於2012年學習python的書籍。 –
從屏幕截圖中我看到一條不縮進的行。 – Ambitions
您需要再次縮進第25行,因爲上一行是IF語句 –