我在Windows上使用PyCharm,并且想要更改设置以将最大行长限制为79
字符,而不是默认的120
字符限制。
我在哪里可以更改PyCharm中每行的最大字符数?
我在Windows上使用PyCharm,并且想要更改设置以将最大行长限制为79
字符,而不是默认的120
字符限制。
我在哪里可以更改PyCharm中每行的最大字符数?
Answers:
这是我的Pycharm的屏幕截图。所需设置在以下路径中:File -> Settings -> Editor -> Code Style -> General: Right margin (columns)
A style guide is about consistency. Consistency with this style guide is important. Consistency within a project is more important. Consistency within one module or function is most important. But most importantly: know when to be inconsistent -- sometimes the style guide just doesn't apply.
One big exception to PEP 8 is our preference of longer line lengths. We’re well into the 21st Century, and we have high-resolution computer screens that can fit way more than 79 characters on a screen. Don’t limit lines of code to 79 characters if it means the code looks significantly uglier or is harder to read.
对于Mac上的PyCharm 2018.1:
首选项(⌘+ ,),然后Editor -> Code Style
:
对于Windows上的PyCharm 2018.3:
文件->设置(Ctrl+ Alt+ S),然后Editor -> Code Style
:
要遵循PEP-8,请将其设置Hard wrap at
为80。
对于PyCharm 4
文件>>设置>>编辑器>>代码样式:右边距(列)
建议:查看该标签中的其他选项,它们非常有帮助
对于任何人,或者对于我自己,如果我重新加载计算机,在进行代码重新格式化时这对谁都不起作用,那么还有一个附加选项可在editor-> code style-> python下检查:确保未超出正确的边距。选择此选项后,格式将生效。