1
ooh 2014-01-11 22:43:27 +08:00
pep8是79,现在的显示器那么宽其实也没必要非要79
|
2
tan9le 2014-01-11 22:51:25 +08:00
行宽80是为了之前的VT100吧
我记得几年前我纠结过这个问题,当时是给公司做JAVA编码规约,在评审会上有人是这么和我解释的:虽然现在可以不用考虑VT100了,但是为什么会超过80呢?无外乎两个原因,1.定义的变量、进行的运算过多;2.代码层级太深(因为还有一条规约是if/while等等必须换行+缩进),这些都是会降低代码的可读性的。 最终那一版的编码规约中,还是80,但是不是强制,120是强制的上限 我想对于Python这种本身语法就是要求缩进的语言来说,也是同样的道理 |
3
9hills 2014-01-11 22:54:30 +08:00
Some teams strongly prefer a longer line length. For code maintained exclusively or primarily by a team that can reach agreement on this issue, it is okay to increase the nominal line length from 80 to 100 characters (effectively increasing the maximum length to 99 characters), provided that comments and docstrings are still wrapped at 72 characters.
|
4
wenbinwu 2014-01-11 23:01:56 +08:00
我现在不设置了,太少情况会写出很长的一行
而且习惯性的自己就去回车了 |
5
likexian 2014-01-11 23:02:42 +08:00
看显示器宽度自己定
如果显示器可以显示150一行,我干嘛只写到79就换行,留下半边养牛? |