IndentationError:expected an indented block錯誤的解決辦法
阿新 • • 發佈:2019-01-01
第一次寫py檔案,執行的時候老是出現IndentationError:expected an indented block這個錯誤,我還以為自己程式寫的有問題,試了很多。
一般執行py檔案要符合一下幾個簡單步驟:
#!/usr/bin/env python #注意上面這一行必須是第一行頂頭寫。 # python file example. # assume we name this file as "hello.py" # use shell command "chmod +x hello.py" to make this file executable. # then you are able to run it by typing "./hello.py" print "Hello this is from python!"
Python語言是一款對縮排非常敏感的語言,給很多初學者帶來了困惑,即便是很有經驗的Python程式設計師,也可能陷入陷阱當中。最常見的情況是tab和空格的混用會導致錯誤,或者縮排不對,而這是用肉眼無法分別的。
在編譯時會出現這樣的錯IndentationError:expected an indented block說明此處需要縮排,你只要在出現錯誤的那一行,按空格或Tab(但不能混用)鍵縮排就行。
往往有的人會疑問:我根本就沒縮排怎麼還是錯,不對,該縮排的地方就要縮排,不縮排反而會出錯,,比如:
if xxxxxx: (空格)xxxxx 或者 def xxxxxx: (空格)xxxxx 還有 for xxxxxx: (空格)xxxxx
一句話 有冒號的下一行往往要縮排,該縮排就縮排