行长度

Tip

每行不超过80个字符

例外:

  • 长的导入模块语句
  • 注释里的URL
    不要使用反斜杠连接行.

Python会将 圆括号, 中括号和花括号中的行隐式的连接起来 , 你可以利用这个特点. 如果需要, 你可以在表达式外围增加一对额外的圆括号.

  1. Yes: foo_bar(self, width, height, color='black', design=None, x='foo',
  2. emphasis=None, highlight=0)
  3.  
  4. if (width == 0 and height == 0 and
  5. color == 'red' and emphasis == 'strong'):

如果一个文本字符串在一行放不下, 可以使用圆括号来实现隐式行连接:

  1. x = ('This will build a very long long '
  2. 'long long long long long long string')

在注释中,如果必要,将长的URL放在一行上。

  1. Yes: # See details at
  2. # http://www.example.com/us/developer/documentation/api/content/v2.0/csv_file_name_extension_full_specification.html
  1. No: # See details at
  2. # http://www.example.com/us/developer/documentation/api/content/\
  3. # v2.0/csv_file_name_extension_full_specification.html

注意上面例子中的元素缩进; 你可以在本文的 缩进 部分找到解释.