vote up 8 vote down star
2

I find myself breaking strings constantly just to get them on the next line. And of course when I go to change those strings (think logging messages), I have to reformat the breaks to keep them within the 80 columns.

How do most people deal with this?

flag

50% accept rate

11 Answers

vote up 8 vote down check

"A foolish consistency is the hobgoblin of little minds, adored by little statesmen and philosophers and divines."

The important part is "foolish".

The 80-column limit, like other parts of PEP 8 is a pretty strong suggestion. But, there is a limit, beyond which it could be seen as foolish consistency.

I have the indentation guides and edge line turned on in Komodo. That way, I know when I've run over. The questions are "why?" and "is it work fixing it?"

Here are our common situations.

logging messages. We try to make these easy to wrap. They look like this

logger.info( "unique thing %s %s %s",
   arg1, arg2, arg3 )

Django filter expressions. These can run on, but that's a good thing. We often knit several filters together in a row. But it doesn't have to be one line of code, multiple lines can make it more clear what's going on.

This is an example of functional-style programming, where a long expression is sensible. We avoid it, however.

Unit Test Expected Result Strings. These happen because we cut and paste to create the unit test code and don't spend a lot of time refactoring it. When it bugs us we pull the strings out into separate string variables and clean the self.assertXXX() lines up.

We generally don't have long lines of code because we don't use lambdas. We don't strive for fluent class design. We don't pass lots and lots of arguments (except in a few cases).

We rarely have a lot of functional-style long-winded expressions. When we do, we're not embarrassed to break them up and leave an intermediate result lying around. If we were functional purists, we might have gas with intermediate result variables, but we're not purists.

link|flag
"Next Stop Wonderland", one of my favorite movies, used that quote from Emerson as a running bit throughout. Terrific stuff. – duffymo Feb 24 at 19:12
s/is it work fixing it/is it worth fixing it/ – J.F. Sebastian Feb 26 at 16:50
vote up 4 vote down

I would suggest being willing to go beyond 80 columns. 80 columns is a holdover from when it was a hard limit based on various output devices.

Now, I wouldn't go hog wild...set a reasonable limit, but an arbitary limit of 80 columns seems a bit overzealous.

EDIT: Other answers are also clarifing this: it matters what you're breaking. Strings can more often be "special cases" where you may want to bend the rules a bit, for the sake of clarity. If your code, on the other hand, is getting long, that's a good time to look at where it is logical to break it up.

link|flag
Python style guides do not like your answer. . .python.org/dev/peps/pep-0008 – Baltimark Feb 24 at 18:54
It's not just a holdover. Long lines are difficult to read even if you resize your window to be wide enough to display them. That's why newspapers and magazines lay out text in columns. I wish programmers would try to stick to 80 columns or perhaps 100 in verbose languages (Java, C#). – Tmdean Feb 24 at 18:55
@Tmdean: I would agree that the lines shouldn't get overly long...but his point is that he is breaking strings in places that seem awkward...ie it's getting less readable by the breaks he's inserting. A bit of flexibility may well go a long way. – Beska Feb 24 at 18:59
@Baltimark: In the link you posted in your comment, one of the first rules it states is "Readability counts"...and then just a bit further down, when describing when it's okay to "break the rules": "(1) When applying the rule would make the code less readable..." – Beska Feb 24 at 19:01
Using any hard limit is stupid. If adding breaks makes it more readable, add them. Otherwise, go past 80. – Matt Olenik Feb 24 at 19:04
show 1 more comment
vote up 1 vote down

Strings are special because they tend to be long, so break them when you need and don't worry about it.

When your actual code starts bumping the 80 column mark it's a sign that you might want to break up deeply nested code into smaller logical chunks.

link|flag
vote up 22 vote down

I recommend trying to stay true to 80-column, but not at any cost. Sometimes, like for logging messages, it just makes more sense to keep 'em long than breaking up. But for most cases, like complex conditions or list comprehensions, breaking up is a good idea because it will help you divide the complex logic to more understandable parts. It's easier to understand:

print sum(n for n in xrange(1000000) 
             if palindromic(n, bits_of_n) and palindromic(n, digits))

Than:

print sum(n for n in xrange(1000000) if palindromic(n, bits_of_n) and palindromic(n, digits))

It may look the same to you if you've just written it, but after a few days those long lines become hard to understand.

link|flag
Another example is long if conditions. I think its easier to read a 100 character if condition than to break it across two/three lines using (). – Richard Levasseur Feb 25 at 2:20
vote up 1 vote down

I deal with it by not worrying about the length of my lines. I know that some of the lines I write are longer than 80 characters but most of them aren't.

I know that my position is not considered "pythonic" by many and I understand their points. Part of being an engineer is knowing the trade-offs for each decision and then making the decision that you think is the best.

link|flag
vote up 5 vote down

This is a good rule to keep to a large part of the time, but don't pull your hair out over it. The most important thing is that stylistically your code looks readable and clean, and keeping your lines to reasonable length is part of that.

Sometimes it's nicer to let things run on for more than 80 columns, but most of the time I can write my code such that it's short and concise and fits in 80 or less. As some responders point out the limit of 80 is rather dated, but it's not bad to have such a limit and many people have terminals

Here are some of the things that I keep in mind when trying to restrict the length of my lines:

  • is this code that I expect other people to use? If so, what's the standard that those other people and use for this type of code?
  • do those people have laptops, use giant fonts, or have other reasons for their screen real estate being limited?
  • does the code look better to me split up into multiple lines, or as one long line?

This is a stylistic question, but style is really important because you want people to read and understand your code.

link|flag
vote up 1 vote down

80 character limits? What year is it?

Make your code readable. If a long line is readable, it's fine. If it's hard to read, split it.

For example, I tend to make long lines when there is a method call with lots of arguments, and the arguments are the normal arguments you'd expect. So, let's say I'm passing 10 variables around to a bunch of methods. If every method takes a transaction id, an order id, a user id, a credit card number, etc, and these are stored in appropriately named variables, then it's ok for the method call to appear on one line with all the variables one after another, because there are no surprises.

If, however, you are dealing with multiple transactions in one method, you need to ensure that the next programmer can see that THIS time you're using transId1, and THAT time transId2. In that case make sure it's clear. (Note: sometimes using long lines HELPS that too).

Just because a "style guide" says you should do something doesn't mean you have to do it. Some style guides are just plain wrong.

link|flag
I'd like to vote this up for the good points made, but simply can't because of the last sentence: an unnecessary, irrelevant stab at Strunk & White. :) (Partially outdated, deserving criticism? Sure. Plain wrong? No.) – Jonik Feb 24 at 20:22
@Jonik: Thanks for the Strunk and White reference. Swiping at Strunk and White's too easy. Most of their advice is really sound, even if White didn't choose to follow it strictly. The blog is helpful because it's so heavily one-sided. – S.Lott Feb 24 at 20:32
Maybe "Plain Wrong" is too strong but people brandish S&W as if it's the Gospel of writing and never wrong. Heck, even SO has the S&W badge :( – Mr. Shiny and New Feb 24 at 21:51
vote up 5 vote down

It doesn't matter what year is it or what output devices you use (to some extent). Your code should be readable if possible by humans. It is hard for humans to read long lines.

It depends on the line's content how long it should be. If It is a log message then its length matters less. If it is a complex code then its big length won't be helping to comprehend it.

link|flag
vote up -2 vote down

Pick a style you like, apply a layer of common sense, and use it consistently.

Edit: This is a relevant answer. Can whoever rated this down please explain why in the comments? That would be good netiquette and manners, it doesn't make any sense.

link|flag
I'm not the original downvoter. But your answer has no content. Sure pick a style, common sense it and then use consistently. It can't be relevant because it's not quite there. – muhuk Feb 26 at 16:47
I disagree. He's obviously sticking to 80 columns because of PEP-8 but the point I'm making is that these are just style guidelines, not rules. – Wayne Koorts Feb 26 at 17:16
@Wayne: I'm also not a downvoter on this answer. But if your comment was part of your answer it'd be clearer. – Mr. Shiny and New Feb 27 at 13:55
vote up 2 vote down

The 80 column count is one of the few places I disagree with the Python style guide. I'd recommend you take a look at the audience for your code. If everyone you're working with uses a modern IDE on a monitor with a reasonable resolution, it's probably not worth your time. My monitor is cheap and has a relatively weak resolution, but I can still fit 140 columns plus scroll bars, line markers, break markers, and a separate tree-view frame on the left.

However, you will probably end up following some kind of limit, even if it's not a fixed number. With the exception of messages and logging, long lines are hard to read. Lines that are broken up are also harder to read. Judge each situation on its own, and do what you think will make life easiest for the person coming after you.

link|flag
Since no reason was given for voting this down and it's obviously a reasonable answer I'm voting it back up for balance. – Wayne Koorts Feb 25 at 17:16
vote up 4 vote down

Temporary variables. They solve almost every problem I have with long lines. Very occasionally, I'll need to use some extra parens (like in a longer if-statement). I won't make any arguments for or against 80 character limitations since that seems irrelevant.

Specifically, for a log message; instead of:

self._log.info('Insert long message here')

Use:

msg = 'Insert long message here'
self._log.info(msg)

The cool thing about this is that it's going to be two lines no matter what, but by using good variable names, you also make it self-documenting. E.g., instead of:

obj.some_long_method_name(subtotal * (1 + tax_rate))

Use:

grand_total = subtotal * (1 + tax_rate)
obj.some_long_method_name(grand_total)

Most every long line I've seen is trying to do more than one thing and it's trivial to pull one of those things out into a temp variable. The primary exception is very long strings, but there's usually something you can do there too, since strings in code are often structured. Here's an example:

br = mechanize.Browser()
ua = '; '.join(('Mozilla/5.0 (Macintosh', 'U', 'Intel Mac OS X 10.4',
                'en-US', 'rv:1.9.0.6) Gecko/2009011912 Firefox/3.0.6'))
br.addheaders = [('User-agent', ua)]
link|flag
This doesn't solve every problem certainly, but I have to agree with the premise that it often gives the win-win of shorter lines and clearer code. +1. – Beska Feb 27 at 21:06

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.