PyCharm常见问题详解

一、"PEP:8 expected 2 black lines after class or fuction definition,found 0"

这句话的意思是“在类或方法定义后应该有两个空白行,但是没有发现。”

解决方法:在函数或方法声明那行的上面必须有两行空行(函数之间需要最少2个空白行,方便查阅、区分)

二、W292 no newline at end of file

解决方法:在代码末尾加一行回车就行

三、E231 missing whitespace after ‘,’

解决方法:为了方便查看,即逗号“,”后需要补空格

示例:

print("%s %s %s %s" %(A,B,C,D))
print("%s %s %s %s" % (A, B, C, D))

四、W291 trailing whitespace

解决方法:函数或代码段终止处出现了多余的空格

举例

return kw   (这里多了几个空格,错误)
return kw

五、spellchecker inspection helps locate typos and misspelled in your code,comments and literals,and fix them in one click.

(翻译:拼写检查器检查可以帮助查找拼写错误拼写错误代码、 注释文本 修复它们一次点击)

方法一:

PyCharm常见问题详解_第1张图片

把Spelling typo勾选去掉(禁用单词拼写检查)

点击 apply 关掉窗口。在看看,波浪提示果然消失了。

方法二:选中单词,单击鼠标右键。




Save ‘miyuehu’ to dictionary...保存到词典的意思嚒。







你可能感兴趣的:(python基础详解,python错误)