What is the Pythonic way of writing a single-line but long string in program:
s = 'This is a long long string.'
Additionally, the string may need to be formatted with variables:
s = 'This is a {} long long string.'.format('formatted')
s = 'This is a long '\
'long '\
'string.'
Additional trailing \
characters make reformatting very difficult. Joining two lines with a \
gives an error.
s = 'This is a long \
long \
string.'
Except for a similar problem as above, subsequent lines must be aligned at the very beginning, which gives awkward readability when the first line is indented.
Use triple quotes to create a multiline string You will need to enclose it with a pair of Triple quotes, one at the start and second in the end. Anything inside the enclosing Triple quotes will become part of one multiline string.
Inserting a newline code \n , \r\n into a string will result in a line break at that location.
A multiline string in Python begins and ends with either three single quotes or three double quotes. Any quotes, tabs, or newlines in between the “triple quotes” are considered part of the string.
Whenever Python interpreter starts processing a string it looks for a quotation mark, it could either be a single quote or double quote. The opening quote indicates the starting of the string and closing quote indicates the end of the string.
For long strings where you don't want \n characters, use 'string literal concatenation':
s = (
'this '
'is '
'a '
'long '
'string')
Output:
This is a long string
And it can be formatted as well:
s = (
'this '
'is '
'a '
'{} long '
'string').format('formatted')
Output:
This is a formatted long string
Here's the PEP8 guideline: https://www.python.org/dev/peps/pep-0008/#maximum-line-length
Wrap long lines in parenthesis.
Use a maximum of 72 characters per line for long lines of text.
If you have any operators in your string, place the line breaks before them.
Other than that, as long as you're not obscuring what's going on, it's pretty much up to you on how you want to do it.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With