2.1.6. 隐式的行拼接

圆括号、方括号或花括号以内的表达式允许分成多个物理行,无需使用反斜杠。例如:

  1. month_names = ['Januari', 'Februari', 'Maart', # These are the
  2. 'April', 'Mei', 'Juni', # Dutch names
  3. 'Juli', 'Augustus', 'September', # for the months
  4. 'Oktober', 'November', 'December'] # of the year

隐式的行拼接可以带有注释。后续行的缩进不影响程序结构。后续行也允许为空白行。隐式拼接的行之间不会有 NEWLINE 形符。隐式拼接的行也可以出现于三引号字符串中 (见下);此情况下这些行不允许带有注释。