美文网首页Python
Python expected an indented bloc

Python expected an indented bloc

作者: NieFeng1024 | 来源:发表于2017-03-04 12:40 被阅读319次

    Python expected an indented block

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

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

    error.png error_code.png

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

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

    code.png

    相关文章

      网友评论

        本文标题:Python expected an indented bloc

        本文链接:https://www.haomeiwen.com/subject/diadgttx.html