IndentationError:expected an indented block错误的解决办法
第一次写py文件,执行的时候老是出现IndentationError:expected an indented block这个错误,我还以为自己程序写的有问题,试了很多。一般运行py文件要符合一下几个简单步骤:#!/usr/bin/env python#注意上面这一行必须是第一行顶头写。# python file example.# assume we name this fi
·
第一次写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
一句话 有冒号的下一行往往要缩进,该缩进就缩进
更多推荐
已为社区贡献2条内容
所有评论(0)