vote up 1 vote down star
1

How do I break lines in Python code?

[This is an exact duplicate of How can I do a line continuation of code in Python?. Please continue the discussion there.]

flag

57% accept rate

closed as exact duplicate by Chris Upchurch Sep 21 '08 at 13:52

2 Answers

vote up 10 vote down check

You can break lines in between parenthesises and braces. Additionally, you can append the backslash character \ to a line to explicitly break it:

x = (tuples_first_value,
     second_value)
y = 1 + \
    2
link|flag
vote up 10 vote down

This is a duplicate of How can I do a line continuation of code in Python?, which has a deeper analysis.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.