|
|
|
|
|
by kutenai
1426 days ago
|
|
Not quite true.
Python PEP 8, kind of a core in Python style, states that lines should be no longer than 79 characters. I personally, and I believe many current Python developers use a more realistic 120 character line length.. But, in Python,
long lines are frowned upon, and your multi-line function call is the preferred approach. |
|