热线电话:13121318867

登录
2018-10-17 阅读量: 2258
expected an indented block报错

Python语言是一款对缩进非常敏感的语言,最常见的情况是tab和空格的混用会导致错误,或者缩进不对。

s = 200
if s >=0:
print s
File "<ipython-input-1-3bc7501862e5>", line 3
print s
^
IndentationError: expected an indented block

在编译时会出现这样的错IndentationError:expected an indented block说明此处需要缩进,你只要在出现错误的那一行,按空格或Tab(但不能混用)键缩进就行。

0.0000
0
关注作者
收藏
评论(0)

发表评论

暂无数据
推荐帖子