本文主要是介绍爬虫:Spellchecker inspection helps locate typos and misspelling in your code,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
学爬虫,遇到报错:Spellchecker inspection helps locate typos and misspelling in your code,comments and literals, and fix them in one click.
大概是说,拼写检查发现了代码中的拼写错误。
百度了一下,原来是pycharm自带拼写检查的功能,可以选择关闭。打开设置,找到Editor\Cor Scheme\General,选择Typo,右侧Effects的勾点掉。如图。
除了这个,还有一些奇奇怪怪的问题:
- PEP 8 missing whitespace after ‘,’:缺少空格…
- PEP 8 no newline at end of file:文件最后缺少新行…
- PEP 8 expected 2 blank lines after class or function definition, found 1:类前面需要两行空行…
- PEP 8 line too long (142 > 120 characters):行太长…
- Function name should be lowercase more… (Ctrl+F1) This inspection checks the PEP8 naming conventions.:函数名要小写…
到这里会发现所有问题都和PEP 8有关, 原来这个是python编码规范,这就是 没仔细学python直接开始爬虫学习的缺点吧。。
PEP 8 官方文档:https://legacy.python.org/dev/peps/pep-0008/
中文文档:https://www.cnblogs.com/ajianbeyourself/p/4377933.html
鸣谢:https://blog.csdn.net/momoku233/article/details/79689902
https://www.cnblogs.com/seablog/p/7146166.html
这篇关于爬虫:Spellchecker inspection helps locate typos and misspelling in your code的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!