vote up 6 vote down star

I see on Stack Overflow and PEP 8 that the recommendation is to use spaces only for indentation in Python programs. I can understand the need for consistent indentation and I have felt that pain.

Is there an underlying reason for spaces to be preferred? I would have thought that tabs were far easier to work with.

flag

1  
Read the PEP discussion to know. – e-satis Sep 23 '08 at 15:52
1  
I'm editing in the subjective tag since tabs vs. spaces has been known to cause lots of holy wars. :) – Jason Baker Sep 27 '08 at 16:59
i think the subjective tag is (for once) wrong. the question asks for the reasoning or reason behind the decision in the canoncial text about the subject! – hop Oct 10 '08 at 13:49
PEP = Python Enhancement Proposal. – Peter Mortensen Jul 31 at 21:30

12 Answers

vote up 9 vote down check

The answer is given right there in the PEP. I quote:

The most popular way of indenting Python is with spaces only.

What other underlying reason do you need?

To put it less bluntly: Consider also the scope of the PEP as stated in the very first paragraph:

This document gives coding conventions for the Python code comprising the standard library in the main Python distribution.

The intention is to make all code that goes in the official python distribution consistently formatted (I hope we can agree that this is universally a Good Thing™).

Since the decision between spaces and tabs for an individual programmer is a) really a matter of taste and b) easily dealt with by technical means (editors, conversion scripts, etc.), there is a clear way to end all discussion: chose one.

Guido was the one to choose. He didn't even have to give a reason, but he still did by referring to empirical data. (Although, I guess, if the BDFL were a proponent of the use of tabs, he would have ignored that argument ;-)

For all other purposes you can either take this PEP as a recommendation, or you can ignore it -- your choice, or your team's, or your team leaders.

But if I may give you one advice: don't mix'em ;-)

link|flag
vote up 0 vote down

I personally don't agree with spaces over tabs. To me, tabs are a document layout character/mechanism while spaces are for content or delineation between commands in the case of code.

I have to agree with Jim's comments that tabs aren't really the issue, it is people and how they want to mix tabs and spaces.

That said, I've forced myself to use spaces for the sake of convention. I value consistency over personal preference.

link|flag
vote up 1 vote down

JWZ says it best:

When [people are] reading code, and when they're done writing new code, they care about how many screen columns by which the code tends to indent when a new scope (or sexpr, or whatever) opens...

...My opinion is that the best way to solve the technical issues is to mandate that the ASCII #9 TAB character never appear in disk files: program your editor to expand TABs to an appropriate number of spaces before writing the lines to disk...

...This assumes that you never use tabs in places where they are actually significant, like in string or character constants, but I never do that: when it matters that it is a tab, I always use '\t' instead.

link|flag
vote up 4 vote down

The main problems with indentation occur when you mix tabs and spaces. Obviously this doesn't tell you which you should choose, but it is a good reason to to recommend one, even if you pick it by flipping a coin.

However, IMHO there are a few minor reasons to favour spaces over tabs:

  • Different tools. Sometimes code gets displayed outside of a programmer's editor. Eg. posted to a newsgroup or forum. Spaces generally do better than tabs here - everywhere spaces would get mangled, tabs do as well, but not vice-versa.

  • Programmers see the source differently. This is deeply subjective - its either the main benefit of tabs, or a reason to avoid them depending on which side you're on. On the plus side, developers can view the source with their preferred indentation, so a developer preferring 2-space indent can work with an 8-space developer on the same source and still see it as they like. The downside is that there are repercussions to this - some people like 8-space because it gives very visible feedback that they're too deeply nested - they may see code checked in by the 2-indenter constantly wrapping in their editor. Having every developer see the code the same way leads to more consistency wrt line lengths, and other matters too.

  • Continued line indentation. Sometimes you want to indent a line to indicate it is carried from the previous one. eg.

    def foo():
        x = some_function_with_lots_of_args(foo, bar, baz,
                                            xyzzy, blah)
    

    If using tabs, theres no way to align this for people using different tabstops in their editor without mixing spaces and tabs. This effectively kills the above benefit.

Obviously though, this is a deeply religious issue, which programming is plagued with. The most important issue is that we should choose one - even if thats not the one you favour. Sometimes I think that the biggest advantage of significant indentation is that at least we're spared brace placement flamewars.

Also worth reading is this article by Jamie Zawinski on the issue.

link|flag
The alignment is trivial though. I simply use the brackets like a block and indent each arg. Also, in your example you very well can use spaces since you're inside an argument list and you can stack as many spaces in there as you want. – Soviut May 16 at 17:44
1  
@Soviut: If you indent with spaces, the alignment is messed up as soon as it's viewed with a different tab size. The only way to preserve it is to use tabs to the indent level, and then spaces for the rest - ie mix spaces and tabs, which leads to its own problems. – Brian May 16 at 20:19
Yeah, which is why i tend to just use the python convention of block indenting on my arguments anyways. Sure, they may not line up with the open brace, but its still clear which line or command they belong to. JQuery syntax operates on a similar principle. – Soviut May 17 at 4:20
vote up 0 vote down

The answer to the question is: PEP-8 wants to make a recommendation and has decided that since spaces are more popular it will strongly recommend spaces over tabs.


Notes on PEP-8

PEP-8 says 'Use 4 spaces per indentation level.'
Its clear that this is the standard recommendation.

'For really old code that you don't want to mess up, you can continue to use 8-space tabs.'
Its clear that there are SOME circumstances when tabs can be used.

'Never mix tabs and spaces.'
This is a clear prohibition of mixing - I think we all agree on this. Python can detect this and often chokes. Using the -tt argument makes this an explicit error.

'The most popular way of indenting Python is with spaces only. The second-most popular way is with tabs only.'
This clearly states that both are used. Just to be ultra-clear: You should still never mix spaces and tabs in same file.

'For new projects, spaces-only are strongly recommended over tabs.'
This is a clear recommendation, and a strong one, but not a prohibition of tabs.


I can't find a good answer to my own question in PEP-8. I use tabs, which I have used historically in other languages. Python accepts source with exclusive use of tabs. That's good enough for me.

I thought I would have a go at working with spaces. In my editor, I configured a file type to use spaces exclusively and so it inserts 4 spaces if I press tab. If I press tab too many times, I have to delete the spaces! Arrgh! Four times as many deletes as tabs! My editor can't tell that I'm using 4 spaces for indents (although AN editor might be able to do this) and obviously insists on deleting the spaces one at a time.

Couldn't Python be told to consider tabs to be n spaces when its reading indentations? If we could agree on 4 spaces per indentation and 4 spaces per tab and allow Python to accept this, then there would be no problems.
We should find win-win solutions to problems.

link|flag
What editor are you using? Most I've used have an option to dedent on backspace (emacs behaves this way for instance), regardless of the implementation of the indenting. – Brian Sep 27 '08 at 17:36
I'm using TextPad – quamrana Sep 27 '08 at 17:54
You're right - I don't see an option to dedent on backspace, but you can probably deal with it using shift-tab, or reduce indent (ctrl-shift-i by default) instead. – Brian Sep 27 '08 at 20:15
I'm just trying PyScripter which seems loads better at using spaces when you press tab and removing them in 4's when you press backspace. – quamrana Aug 23 at 19:11
vote up 10 vote down

The reason for spaces is that tabs are optional. Spaces are the actual lowest-common denominator in punctuation.

Every decent text editor has a "replace tabs with spaces" and many people use this. But not alawys.

While some text editors might replace a run of spaces with a tab, this is really rare.

Bottom Line. You can't go wrong with spaces. You might go wrong with tabs. So don't use tabs and reduce the risk of mistakes.

link|flag
vote up 1 vote down

You can have your cake and eat it to. Set your editor to expand tabs into spaces automatically.

(That would be :set expandtab in Vim.)

link|flag
vote up 3 vote down

Since python relies on indentation in order to recognize program structure, a clear way to identify identation is required. This is the reason to pick either spaces or tabs.

However, python also has a strong philosophy of only having one way to do things, therefore there should be an official recommendation for one way to do indentation.

Both spaces and tabs pose unique challenges for an editor to handle as indentation. The handling of tabs themselves is not uniform across editors or even user settings. Since spaces are not configurable, they pose the more logical choice as they guarantee that the outcome will look everywhere the same.

link|flag
vote up 4 vote down

The most significant advantage I can tell of spaces over tabs is that a lot of programmers and projects use a set number of columns for the source code, and if someone commits a change with their tabstop set to 2 spaces and the project uses 4 spaces as the tabstop the long lines are going to be too long for other people's editor window. I agree that tabs are easier to work with but I think spaces are easier for collaboration, which is important on a large open source project like Python.

link|flag
vote up -3 vote down

tabs are horrendous (IMHO). I just think the user preference is for spaces over tabs, so the PEP recommends "one and only one obvious way to do it".

link|flag
Clearly, its not "obvious" since this question is being asked. This issue transcends all languages and is only slightly more relevant in python due to the whitespace sensitivity. – Soviut May 17 at 4:21
vote up 2 vote down

The universal problem with tabs is that they can be represented differently in different environment.
In a given editor, a tab might be 8 spaces or it might be 2.
In some editors, you can control this, while in others you can't.

Another issue with tabs is how they are represented in printed output. I believe most printers interpret a tab as 8 spaces.

With spaces, there is no doubt. Everything will line up as the author intended.

link|flag
Another one who has fundamentally misunderstood the tab... get a mechanical typewriter and play with it for a while, really! 1 tab is not equal to 8 spaces! it is equal to up_to_8_spaces! otoh: with proportional fonts, tabs are the only way to guarantee alignment. – hop Oct 10 '08 at 14:14
vote up 13 vote down

The problem with tabs is that they are invisible, and people can never agree on the width of tabs. When you mix tabs and spaces, and you set tabstops at something other than Python (which uses tabstops every 8 spaces) you will be seeing the code in a different layout than Python sees it. And because the layout determines blocks, you will be seeing different logic. It leads to subtle bugs.

If you insist on defying PEP 8 and using tabs -- or worse, mixing tabs and spaces -- at least always run python with the '-tt' argument, which makes inconsistent indentation (sometimes a tab, sometimes a space for the same indentation level) an error. Also, if possible, set your editor to display tabs differently. But really, the best approach is not to use tabs, period.

link|flag
2  
It's true that tabs are invisible and people can't agree on the width of tabs. But the same is also true for spaces. When you mix tabs and spaces, things go wrong. But why are you blaming that situation on tabs and not spaces? – Jim Sep 23 '08 at 14:01
6  
No, the same is not true for spaces. People can agree on the width of spaces. – Rafał Dowgird Sep 23 '08 at 14:49
Indeed: we're not talking about the width of indentation, but how wide the tab displays. A space is always the same width, a tab by itself is always a consistent width, but the combination of tabs mixed with spaces is not. – Thomas Wouters Sep 23 '08 at 14:53
2  
A single space may always be the same width, but indentation with spaces is not always the same width. I fail to see how agreeing to use tabs n spaces wide is any different to agreeing to indent with n spaces. – Jim Sep 23 '08 at 14:57
Here's why: with tabwidth at 4 spaces, four spaces followed by a tab will be as wide as 2 tabs. With tabwidth at 8 spaces, which Python uses, the same four spaces followed by a tab will only be as wide as one tab. Mix the two styles in a block and the code will do the wrong thing. – Thomas Wouters Sep 23 '08 at 16:37
show 11 more comments

Your Answer

Get an OpenID
or

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