expected an indented block

时间:2023-03-08 22:01:33

expected an indented block

在初步使用Python的时候遇到了“ expected an indented block”报错信息,查询相关的博客得知是因为一款对缩进非常敏感的语言。

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

参考地址:http://blog.****.net/neilhappy/article/details/7724959