Expressions in parentheses, square brackets or curly braces can be split over more than one physical line without using backslashes. For example:
在小括号, 中括号, 大括号中的表达式可以跨越多个物理行, 而不用反斜线, 例如:
month_names = ['Januari', 'Februari', 'Maart', # These are the 'April', 'Mei', 'Juni', # Dutch names 'Juli', 'Augustus', 'September', # for the months 'Oktober', 'November', 'December'] # of the year
Implicitly continued lines can carry comments. The indentation of the continuation lines is not important. Blank continuation lines are allowed. There is no NEWLINE token between implicit continuation lines. Implicitly continued lines can also occur within triple-quoted strings (see below); in that case they cannot carry comments.
隐式的行连接可以尾随注释.接续行的缩进可以不考虑.空的接续行是不允许的.在隐式的接续行中是不存在NEWLINE语言符号的, 隐式的行连接在三重引用串(后述)中也是合法的, 那种情况下不能加注释.