I am doing some Python programming, and I have a couple of lines that are longer than 120 chars, which is our maximum line width in our coding style guidelines.
Now I was wondering how to do a line break in python, here is an example:
someString = "Here is a [.......] very long text" # This line is now 130 chars long
And I want something like this:
someString = "Here is a [...]
[...] very long text"
How can I format my python script like this?