Skip to content
Advertisement

How to break a line of chained methods in Python?

I have a line of the following code (don’t blame for naming conventions, they are not mine):

JavaScript

I don’t like how it looks like (not too readable) but I don’t have any better idea to limit lines to 79 characters in this situation. Is there a better way of breaking it (preferably without backslashes)?

Advertisement

Answer

You could use additional parentheses:

JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement