vote up 0 vote down star

Reading about how spaces are prefered over tabs in Python, are they saying that all indented whitespace has to be created one space at a time? How in the world can a Python program be written quickly?

flag

I'm so downvoting this question. I honestly hope you aren't serious. – Vicent Marti Sep 23 '08 at 23:47
Clearly, someone's got sand in their underwear because they want to type tabs. And they can. But not without complaining. – S.Lott Sep 23 '08 at 23:51
I can type 85 wpm, but have not intention of hitting the spacebar thousands of times to write one small program. Glad I don't have to. Thanks for the answers. – Lance Roberts Sep 23 '08 at 23:55
Sorry. Spaces absolutely mandatory. You can only use the spacebar. They're all crazy. You were right to ask a negative question implying that Python was untypable. Totally right to be negative at the outset. – S.Lott Sep 24 '08 at 0:15

11 Answers

vote up 29 vote down check

Good text editors have an option to make the Tab key use spaces.

link|flag
vote up 1 vote down

The vast majority of text editors can be configured so pressing Tab inserts enough spaces to move the cursor to the next tab stop.

link|flag
vote up 1 vote down

Most Editors/IDEs convert a tab press to the appropriate number of spaces. Emacs (in the right mode) and Eclipse both do this.

link|flag
vote up 4 vote down

By using an editor that is set up correctly.

Most editors are configurable so that pressing the key adds one logical level of indentation. There are three major ways that this is done:

  1. Adding a tab character (aka, ^I)
  2. Putting a number of spaces in, such as 4 or 8, whatever is configured.
  3. Combining tabs and spaces in such a way that the line starts with tabs, and then is completed by spaces. Used when a logical indentation level is 4 characters, but tabs are 8 wide. So [tab][tab][tab] is 1 ^I and 4 spaces, making it indented by 12.

Python understand all three of the above schemes for indentation. All programming editors have the ability to configure which of the techniques to use.

link|flag
vote up 0 vote down

Most of the time, tabs work differently between plain text and rich text editors. Rich text editors use crazy alignment schemes to make everything look pretty. Plain text editors usually just insert a set number of spaces. I suggest using a plain text editor for Python, so you can just press "tab" and get the correct number of spaces.

(Also, it's a good idea to edit in plain-text so that you don't jumble up your script with hidden formatting information that could mess with your script.)

link|flag
vote up 14 vote down

Furthermore, good text editors have an auto-indent option where pressing Enter to create a new line automatically aligns the cursor under the first non-blank character on the previous line. Then you just continue typing normally, or press Tab or Shift-Tab once to change the indent level.

link|flag
vote up 0 vote down

I agree with all who said good text editors make all the difference so here are some I like. There are lot of others out there, but any one these will help you a lot.

Cross-Platform:

  • JEdit

Windows:

  • Notepad++
  • TextPad

Mac:

  • TextWrangler
  • TextMate

Linux:

  • Kate - KDE's text editor
  • Vim (there is a version for windows too)
  • EMacs - never used it myself, but people like it.
link|flag
1  
Er, I think vim and emacs belong under "cross-platform" there. Both of them run on Windows, OS X, Linux, and several flavors of UNIX. – Eevee Sep 24 '08 at 0:59
that is true. however I decided to put them under the linux category because a) that is where they were originally found, b) they are usually installed by default on linux, c) they were not specifically designed to be cross platform like JEdit was. – tim.tadh Sep 24 '08 at 17:02
By that logic JEdit isn't cross platform, it only runs on the JVM. Emacs and Vim both pre-date Linux. – jsamsa Sep 19 at 22:42
vote up 1 vote down

Just because Python should use tabs doesn't mean it has to. I use tabs in all of my files, and I've had no problems. That said, any good text editor indents for you, as mentioned a dozen times before.

In Python, whitespace:

  1. Includes spaces and tabs
  2. May contain any combination of spaces and tabs (e.g. you can indent a line with "space tab space space tab space tab" if you've got something wrong with you)
  3. Must be consistent within a block (e.g. "space tab space" is ok, as long as every line starts with "space tab space")
  4. Must build on the syntax (if one block is indented with "space tab", then nested blocks must be indented with "space tab "
  5. Is as important to syntax as it is to readability in C, C++, PHP, etc. (in other words, if you're not indenting your code well and consistently in those languages, you're screwed anyway)
  6. Eliminates the 'Missing } on line 4564' error that I used to see when I coded in PHP, but could never find because I didn't know which of the 120 blocks in the file was missing its }
link|flag
vote up 0 vote down

FWIW the Zeus for Windows editor will auto-tab and auto-indent Python code and it works in both tabs as tabs and tabs as whitespace modes.

link|flag
vote up 0 vote down

I kind of had a question to add in relation to this. For some of these mentioned editors, If you autoconvert whitespace to spaces, and you make a mistake, and want to delete the tab you just did, do you now have to delete 4 space characters instead of the one tab?

Reason I ask is because i use tabs (Visual Studio) as it seems it cant recognize them anymore if converted to whitespace, and being human I make mistakes and need to delete ;)

link|flag
Yes, generally you'd have to delete them one at a time. I don't have this problem in Vim because I won't be trying to delete tabs, I'll be using indent-dedent. – Rod Daunoravicius Sep 24 '08 at 7:34
Most good editors will have smart indenting and smart backspacing features so the editor will do the inserting/deleting of the white space characters on your behalf. At least that's the way Zeus works. – jussij Sep 29 '08 at 4:50
vote up 0 vote down

Re mattlant: Well, typically there's a command to decrease the indentation that you can use instead of having to delete the spaces individually. In e.g. vim, it's bound to the < key by default, and you can define how many spaces you want each indentation level to be by setting the shiftwidth option.

link|flag

Your Answer

Get an OpenID
or

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