vote up 1 vote down star

As i write code in python and suddenly feel like adding a new block in front of the code i have already written.... the indentation of the complete code is affected.. it is very tedious process to move to each line and change the indentation...is there any way to do auto indent or something...

eg:

def somefunction:
     x =5
     return x

if i want to add a contrl block

eg:

def somefunction:
     if True:
         x =5
         return x
     return 0

this small change of adding a control block took a lot of tab work....

is there a shortcut or sumthing to do this easily?

flag

71% accept rate
1  
What text editor are you using? – j0rd4n May 15 at 17:42
6  
better text editor? – SilentGhost May 15 at 17:43
Do you mean IDE (Integrated Development Environment)? GUI (Graphic User Interface) could mean almost anything. IDE is what most folks use to write code. – S.Lott May 16 at 3:20

12 Answers

vote up 1 vote down check

I don't know what wacky planets everyone is coming from, but in most editors that don't date back to the stone age, indenting blocks of code typically only requires that a block of text be selected and Tab be pressed. On the flip side, Shift+Tab usually UNdents the block.

This is true for Visual Studio, Notepad2, e, Textmate, Slickedit, #Develop, etc. etc. etc.

If you're not doing large multi-file projects, I strongly recommend Notepad2. Its a very lightweight, free, easy-to-use notepad replacement with just enough code-centric features (line numbers, indentation guides, code highlighting, etc.)

link|flag
1  
shift-tab is usually unindent. ctrl-tab cycles through MDI windows (in MDI applications). – jmucchiello May 16 at 2:01
You're right, corrected. – Soviut May 16 at 2:29
I'm kind of disappointed in Idle though, Shift-Tab just indents more. – Mark Ransom May 16 at 4:39
vote up 0 vote down

In vim, you can enter:

>>

to indent a line. If you enter:

5>>

you indent the 5 lines at and below the cursor. 5<< does the reverse.

link|flag
vote up 0 vote down

In Komodo the Tab and Shift Tab both work as expected to indent and unindent large blocks of code.

link|flag
vote up 1 vote down

If you are using vim there is a plugin specifically for this: Python_fn.vim

It provides useful python functions (and menu equivalents):

]t      -- Jump to beginning of block
]e      -- Jump to end of block
]v      -- Select (Visual Line Mode) block
]<      -- Shift block to left
]>      -- Shift block to right
]#      -- Comment selection
]u      -- Uncomment selection
]c      -- Select current/previous class
]d      -- Select current/previous function
]<up>   -- Jump to previous line with the same/lower indentation
]<down> -- Jump to next line with the same/lower indentation
link|flag
vote up 1 vote down

Vim: switch to visual mode, select the block, use > to indent (or < to unindent).

See also: http://stackoverflow.com/questions/235839/how-do-i-indent-multiple-lines-quickly-in-vi

link|flag
vote up 0 vote down

With emacs there's Python mode. In that mode you highlight and do:

ctrl-c >
ctrl-c <
link|flag
vote up 2 vote down

[Funny ;-)] Dude, I told you that you would need one developer less if you had this new keyboard model Pythonic keyboard

link|flag
vote up 0 vote down

PyDev, which you can find at http://pydev.sourceforge.net/ has a "Code Formatter". It also has autoindent feature. It is a plugin for Eclipse which is freely available for Mac too.

Another option would be http://code.google.com/p/macvim/ if you are familiar or invest time for Vim, which has lots of autoindent features not just for Python.

But, do not forget that, in Python, indentation changes the meaning of the program unlike C family languages. For example for C or C#, a utility program can beautify the code according to the "{" and "}" symbols. But, in Python that would be ambiguous since a program can not format the following:

#Say we wrote the following and expect it to be formatted.
a = 1
for i in range(5):
print i
a = a + i
print a

Do you expect it to be

a = 1
for i in range(5):
    print i
a = a + i
print a #Will print 5

or

a = 1
for i in range(5):
    print i
    a = a + i
print a #Will print 11

which are two different snippets.

link|flag
i understand your point.. but i just wanted a easy way to indent a block when i add a new block in front of the code... simple tabing itself solved the problem... – vignesh May 16 at 10:14
vote up 0 vote down

In TextMate, just highlight the lines you want to indent and use:


⌘ + [
or
⌘ + ]

To move the text in the appropriate direction.

link|flag
Edit: Sorry, this is only under Mac! My mistake. I forget there are other platforms some mornings... – Aaron May 15 at 17:51
I'm pretty sure he's not using TextMate if he's not on a mac. – gnud May 15 at 23:56
why vote this down? – Daniel May 16 at 3:47
vote up 2 vote down

Use VI and never program the same again. :^)

link|flag
3  
That is true on so many levels. – Bryan Oakley May 15 at 17:50
…not all of them good! (Apologies to vi aficionados. :-) – Ben Blank May 15 at 21:25
vote up 1 vote down

In IDLE I just use ctrl+] and ctrl+[ on a block of code.

link|flag
vote up 3 vote down

In the Idle editor, you can just select the lines you want to indent and hit Tab.

I should note that this doesn't actually insert any tabs into your source, just spaces.

link|flag

Your Answer

Get an OpenID
or

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