Tabs versus spaces in Python programming - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T20:07:14Z http://stackoverflow.com/feeds/question/119562 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/119562/tabs-versus-spaces-in-python-programming 15 Tabs versus spaces in Python programming kigurai 2008-09-23T07:26:00Z 2009-11-21T22:30:21Z <p>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.</p> <p>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?</p> <p>Should I switch my editor to insert spaces instead of tabs right away or keep on going like I used to?</p> http://stackoverflow.com/questions/119562/tabs-versus-spaces-in-python-programming/119576#119576 27 Answer by Alexander Kojevnikov for Tabs versus spaces in Python programming Alexander Kojevnikov 2008-09-23T07:28:00Z 2008-09-23T07:28:00Z <p>Because <a href="http://www.python.org/dev/peps/pep-0008/" rel="nofollow">PEP-8</a> tells us to use spaces :)</p> http://stackoverflow.com/questions/119562/tabs-versus-spaces-in-python-programming/119594#119594 5 Answer by Greg Hewgill for Tabs versus spaces in Python programming Greg Hewgill 2008-09-23T07:31:58Z 2008-09-23T07:31:58Z <p>I recently came across an article titled <a href="http://www.secnetix.de/olli/Python/block_indentation.hawk" rel="nofollow">Python: Myths about Indentation</a> 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.</p> <p>I believe it's true that most Python programmers use spaces only.</p> http://stackoverflow.com/questions/119562/tabs-versus-spaces-in-python-programming/119598#119598 10 Answer by ctcherry for Tabs versus spaces in Python programming ctcherry 2008-09-23T07:32:35Z 2008-09-23T07:32:35Z <p>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 <strong>must never mix spaces and tabs</strong>, 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.</p> http://stackoverflow.com/questions/119562/tabs-versus-spaces-in-python-programming/119693#119693 1 Answer by freespace for Tabs versus spaces in Python programming freespace 2008-09-23T07:54:59Z 2008-09-23T07:54:59Z <p>Editor-to-editor mistake occurs when you have <em>mixed indentation within a file</em>. 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 <em>fixes it</em> by <em>removing one level of indentation</em>, which now makes the code <em>look</em> like it is still 2 levels of indentation, but is <em>really one level</em>. At this point all hell breaks loose.</p> <p>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 <code>-tt</code>, which will produce an error when tabs and spaces are mixed.</p> <p>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 <em>personal</em> 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.</p> http://stackoverflow.com/questions/119562/tabs-versus-spaces-in-python-programming/119703#119703 1 Answer by Ignacio Vazquez-Abrams for Tabs versus spaces in Python programming Ignacio Vazquez-Abrams 2008-09-23T07:56:34Z 2008-09-23T07:56:34Z <p>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.</p> http://stackoverflow.com/questions/119562/tabs-versus-spaces-in-python-programming/120249#120249 0 Answer by Rod Daunoravicius for Tabs versus spaces in Python programming Rod Daunoravicius 2008-09-23T10:35:03Z 2008-09-23T10:35:03Z <p>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 <code>"\t "</code> and the second by <code>"\t\t"</code>, they'll look like they're in the same indent level: 8 spaces. </p> <p>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. </p> http://stackoverflow.com/questions/119562/tabs-versus-spaces-in-python-programming/120265#120265 0 Answer by Rod Daunoravicius for Tabs versus spaces in Python programming Rod Daunoravicius 2008-09-23T10:38:35Z 2008-09-23T10:38:35Z <p>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.</p> http://stackoverflow.com/questions/119562/tabs-versus-spaces-in-python-programming/122181#122181 0 Answer by David Locke for Tabs versus spaces in Python programming David Locke 2008-09-23T16:37:41Z 2008-09-23T16:37:41Z <p>I use two space indentation and an editor (kwrite) that inserts spaces instead of tabs when I hit the tab key.</p> http://stackoverflow.com/questions/119562/tabs-versus-spaces-in-python-programming/132652#132652 1 Answer by Ikke for Tabs versus spaces in Python programming Ikke 2008-09-25T11:11:33Z 2008-09-25T11:11:33Z <p>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.</p> http://stackoverflow.com/questions/119562/tabs-versus-spaces-in-python-programming/1777008#1777008 2 Answer by yota for Tabs versus spaces in Python programming yota 2009-11-21T22:30:21Z 2009-11-21T22:30:21Z <p>Tired of chasing after indentation typos ( 8 spaces ? no, 7 oops 9 ... ) I switched my sources to 'tabs only'.</p> <p><strong>1 tab == 1 indent level, full stop</strong></p> <p>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</p> <p>(personally I use 4 char width tab... but some would prefer 3 or 8 space, or even use variable width fonts !!)</p>