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?
|
|
|||||||||
|
|
|
Good text editors have an option to make the Tab key use spaces. |
||
|
|
|
|
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. |
||
|
|
|
|
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:
Python understand all three of the above schemes for indentation. All programming editors have the ability to configure which of the techniques to use. |
||
|
|
|
|
The vast majority of text editors can be configured so pressing Tab inserts enough spaces to move the cursor to the next tab stop. |
||
|
|
|
|
Most Editors/IDEs convert a tab press to the appropriate number of spaces. Emacs (in the right mode) and Eclipse both do this. |
||
|
|
|
|
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:
|
||
|
|
|
|
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.) |
||
|
|
|
|
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:
Windows:
Mac:
Linux:
|
||||||||
|
|
|
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. |
||
|
|
|
|
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 ;) |
||||
|
|
|
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. |
||
|
|
