Having recently had to deal with existing code that was mixing spaces and tabs, it's really confusing.
When you're mixing (which you really shouldn't do, but which does exist out there unfortunately), it appears that "1 tab == 1 indent level" isn't true.
Take the following example (tried with Python 2.7):
# Mostly use spaces
class TestClass:
def __init__(self):
self.total = 0
def add(self, x):
# 8 spaces at the start of the following line:
self.total += x
# SO automatically uses spaces, but use tabs in the next 2 lines.
# One tab at the start of the following line:
if self.total > 10:
# Two tabs at the start of the following line:
print "Greater than 10!"
# Now use spaces again.
return self.total
tc = TestClass()
print "Total: %d" % (tc.add(5),)
print "Total: %d" % (tc.add(5),)
print "Total: %d" % (tc.add(5),)
Here, there are 4 spaces before def add(...) (1 identation level), 8 spaces before self.total += x (2 indentation levels), and a single tab before if self.total > 10.
Yet, that single tab behaves like 2 indentation levels, since this code works. In contrast, if you replace all tabs with 4 spaces (a single indentation level, that's where the def within the class are), you'll get an unexpected indent error before return, because it's no longer in a def block.
This is really confusing with editors that show tabs as 4 characters. Of course, this can be configured, but this also affect source code viewers (e.g. the likes of GitHub) where it's not necessarily easy to configure (or immediately visible that you need to do so, when you can).
The tab v.s. space behaviour will always depend on the editor:
- If your editor automatically inserts spaces whenever you press tab, it will insert the right number of spaces, so that another editor will display the exact same style.
- If your editor doesn't use tabs, there's always a chance that you won't notice a line that's using spaces instead of tabs (especially if other editors are used in the project).
Both have their downsides. The bottom line is that there needs to be an arbitrary choice between tabs and spaces, but they should never be mixed. Since you never know how your code is going to be read and used later, it's good to have a convention that affects all python coders. PEP-8 says spaces, so be it.
What matters is not to do it the Java way:
Four spaces should be used as the unit of indentation. The exact
construction of the indentation (spaces vs. tabs) is unspecified. Tabs
must be set exactly every 8 spaces (not 4).
Yes... 1 tab = 2 indentation levels in the Java world! Thankfully, it doesn't have the same significance in terms of compilation.