1. 程式人生 > >編寫Python出現 expected an indented block

編寫Python出現 expected an indented block

Python中沒有分號,用嚴格的縮排來表示上下級從屬關係。導致excepted an indented block這個錯誤的原因一般有兩個: 1. 冒號後面是要寫上一定的內容的(新手容易遺忘這一點),例如

 

try: 

    something 

else: 

    #else後面的內容由於不是很重要而忘了寫 

  • 1
  • 2
  • 3
  • 4
  • 5

2. 縮排不嚴格,導致少了或者多了一個空格 --------------------- 本文來自 _Naive_ 的CSDN 部落格 ,全文地址請點選:https://blog.csdn.net/qq_28301007/article/details/79009980?utm_source=copy