【PyCharm警告】PEP 8: E302 expected 2 blank lines, found 1

PyCharm中有时会出现警告:PEP 8: E302 expected 2 blank lines, found 1
如下图所示:
【PyCharm警告】PEP 8: E302 expected 2 blank lines, found 1_第1张图片
这是因为在def function()前需要有两行的空行,函数的注释可以不用与函数声明之间有空行。有两种正确形式:
第一种:

#function1
def func1():
return 0
#function2


def func2():
return 0

第二种:

#function1
def func1():
return 0


#function2
def func2():
return 0

你可能感兴趣的:(python,python)