错误记录PyCharm 运行 Python 程序报错 ( PEP 8: E305 expected 2 blank lines after class or function definiti )(代

Posted 韩曙亮

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了错误记录PyCharm 运行 Python 程序报错 ( PEP 8: E305 expected 2 blank lines after class or function definiti )(代相关的知识,希望对你有一定的参考价值。





一、报错信息



第一次写 Python 代码 , 报错如下 :

PEP 8: E305 expected 2 blank lines after class or function definition, found 1









二、解决方案



PEP 8: E305 expected 2 blank lines after class or function definition, found 1 在类和方法后面留出 2 2 2 行空行 , 当前只有 1 1 1 行 ;

在每个方法前留出 2 2 2 行空行 , 报错消失 ;

以上是关于错误记录PyCharm 运行 Python 程序报错 ( PEP 8: E305 expected 2 blank lines after class or function definiti )(代的主要内容,如果未能解决你的问题,请参考以下文章

错误记录PyCharm 运行 Python 程序报错 ( UnicodeDecodeError: ‘ascii‘ codec can‘t decode byte 0xe5 in positio )(代

错误记录PyCharm 运行 Python 程序报错 ( PEP 8: E402 module level import not at top of file )

错误记录PyCharm 运行 Python 程序报错 ( PEP 8: E402 module level import not at top of file )

错误记录PyCharm 运行 Python 程序报错 ( PEP 8: E305 expected 2 blank lines after class or function definiti )(代

错误记录PyCharm 运行 Python 程序报错 ( SyntaxError: Non-ASCII character ‘xe5‘ in file x.py on line 1, but )(代码

我的pycharm没有报错,但代码就是运行不出来,这是怎么回事?