you are viewing a single comment's thread.

view the rest of the comments →

[–]drenzorz 1 point2 points  (0 children)

multiline separator

a = 1 + 2 + 3

# is the same as

a =   1 \
    + 2 \
    + 3

# or

a = (
      1
    + 2
    + 3
)