9 ms·
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
by kutenai 4y 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.
- retrocryptid 4y agoI did not know that. I've sort of always appreciated the python community, even though python leaves me cold.