vote up 14 vote down star
5

I have always used tabs for indentation when I do Python programming. But then I came across a question here on SO where someone pointed out that most Python programmers use spaces instead of tabs to minimize editor-to-editor mistakes.

How does that make a different? Are there other reasons why you would use spaces instead of tabs for Python? Or is it simply not true?

Should I switch my editor to insert spaces instead of tabs right away or keep on going like I used to?

flag

38% accept rate

10 Answers

vote up 27 vote down check

Because PEP-8 tells us to use spaces :)

link|flag
Well, I guess that is a quite good answer! Hadn't seen that one, thanks! – kigurai Sep 23 '08 at 7:33
Haha, that was the fastest accept :) – Alexander Kojevnikov Sep 23 '08 at 7:34
Actually I didn't see this as requiring spaces since the second point was to never mix spaces and tabs - why have that if you can't use tabs. I saw it as ensuring there was a 4-character gap for indent which could be done with 4 spaces or a tab with tabstops set at 4 (that's how I do my Python. – paxdiablo Sep 23 '08 at 7:43
And then I saw "For new projects, spaces-only are strongly recommended over tabs." - boy, do I look stupid now. Hovever, they're recommendations in a guide so I'm not changing my coding style :-). – paxdiablo Sep 23 '08 at 7:47
vote up 10 vote down

The most "pythonic" way is to use 4 spaces per indentation level. The Python interpreter will however recognize spaces or tabs. The only gottcha is you must never mix spaces and tabs, pick one or the other. That said, the specification recommends spaces, most developers use spaces, so unless you have a really good reason not to, I'd say go with spaces.

link|flag
vote up 5 vote down

I recently came across an article titled Python: Myths about Indentation which discusses this and related questions. The article has good reasons for recommending the use of spaces when writing Python code, but there is certainly room for disagreement.

I believe it's true that most Python programmers use spaces only.

link|flag
vote up 2 vote down

Tired of chasing after indentation typos ( 8 spaces ? no, 7 oops 9 ... ) I switched my sources to 'tabs only'.

1 tab == 1 indent level, full stop

The point is: if you want to display the indentation as 4, 8 or pi / 12 character width, just change the settings in your text editor, don't mess with the code :p

(personally I use 4 char width tab... but some would prefer 3 or 8 space, or even use variable width fonts !!)

link|flag
vote up 1 vote down

Editor-to-editor mistake occurs when you have mixed indentation within a file. This arises as follows: a block of code is indented with 4 spaces, and then one indentation level "in", it is indented with tabs. Now the heathen who did this (mixing tabs and spaces) had it so his tabs are also 4 spaces, so he sees no problems, and python sees no problems. Now our victim comes along later, and he has his tabs set to 8 spaces. Now our victims thinks the code looks all whacked, and fixes it by removing one level of indentation, which now makes the code look like it is still 2 levels of indentation, but is really one level. At this point all hell breaks loose.

The lesson here is that you should never, ever, mix tabs and spaces. If you keep to this, then it is easy to reindent your code into spaces or tabs, regardless of which you personally use. The best way to ensure you don't mix tabs and spaces is to always run python with -tt, which will produce an error when tabs and spaces are mixed.

As for tabs and spaces, I personally use tabs so separate indentation from appearance - it is much easier to change the appearance of code when it is indented with tabs than it is with spaces. I know this runs contrary to what 99% of python programmers do, but that is my personal preference, and it is easy in any case to convert a tabbed file to a spaced one. The reverse is not always true, since you can accidentally whack out 4 spaces in strings etc.

link|flag
So, unless mixing tabs and spaces (which I agree is bad) then there is no other reason than convention? – kigurai Sep 23 '08 at 7:58
Convention covers also the possibility of code exchange. – ΤΖΩΤΖΙΟΥ Sep 23 '08 at 8:05
vote up 1 vote down

You CAN mix tabs and spaces... BUT a tab is considered to be the same indentation as 8 spaces, so unless your editor is set up to consider a tab to be 8 spaces you're asking for trouble when mixing them.

link|flag
vote up 1 vote down

The only inconvenience i experience with using spaces instead of tabs is that you cannot easily remove an identation level, you have to remove 4 spaces instead of just one tab.

link|flag
Many editors have an "unindent" keystroke, such as Shift-Tab or Ctrl-[. Some editors even go so far as to erase 4 spaces when you hit Backspace at the right part of the line. – RJHunter Sep 8 at 7:32
The problem is that it's 'some' editors. Most editors wont. – Ikke Sep 8 at 8:43
vote up 0 vote down

People will use different editors on the same code. These editors will represent a tab on the screen differently. If you're working on an editor that represents a tab as 4 spaces, if you indent the first line by "\t " and the second by "\t\t", they'll look like they're in the same indent level: 8 spaces.

The python interpreter doesn't know your editor, and he has to interpret the tab as some amount of indentation. In fact, it interprets the tab as 8 spaces, so he'll see different indent levels than what you intended: 12 spaces for the first line, 16 spaces for the second. You're toasted.

link|flag
Sounds like bad editor. Which editor does that ? Why doesn't it display those on different positions (1 tab on 4 spaces position, 2 tabs on 8 spaces position) ? – alpav Nov 24 at 16:48
vote up 0 vote down

Use an editor that allows you to insert spaces up to the tabstop when you press the TAB key, instead of inserting a \t character. And then forget about it.

link|flag
vote up 0 vote down

I use two space indentation and an editor (kwrite) that inserts spaces instead of tabs when I hit the tab key.

link|flag

Your Answer

Get an OpenID
or

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