Python expected an indented block

Python expected an indented block

码完代码,run ...
IDLE 不给力,一言不合就报错
看到这个错说明一个问题,你是新手,或者不了解Python 语法。
原因是 python 严格区分空格符合tab符号

Python是一款对缩进非常敏感的语言,给很多初学者带来了困惑,即便是很有经验的Python程序员,也可能陷入陷阱当中。最常见的情况是tab和空格的混用会导致错误,或者缩进不对,而这是用肉眼无法分别的。
在编译时会出现这样的错IndentationError:expected an indented block说明此处需要缩进,你只要在出现错误的那一行,按空格或Tab(但不能混用)键缩进就行。

Python expected an indented block_第1张图片
error.png
Python expected an indented block_第2张图片
error_code.png

上图 self 被标记为深色,说明IDLE 检查出此处代码error !!!

解决办法:检查缩进是否正确!!!

Python expected an indented block_第3张图片
code.png

你可能感兴趣的:(Python expected an indented block)