vote up 3 vote down star
1

Is there any mechanism to comment out large blocks of Python code? Right now the only ways I can see of commenting out code are to either start every line with a #, or to enclose the code in """ (triple quotes), except that actually makes it show up in various doc tools.

Edit--After reading the answers (and referring to the "duplicate"), I have concluded the correct answer is "No". One person said so, and the rest lectured us about editors. Not a bad thing, but I feel it's important to put the answer at the top.

flag
Duplicate: stackoverflow.com/questions/397148/… – S.Lott Mar 24 at 10:52

10 Answers

vote up 5 vote down check

No, Python does not have such a mechanism. Block comments are made by prepending each line with a pound sign. For more info, see good ol'-fashioned PEP 8. In any case, almost all Python IDEs support a mechanism to do the block-commenting-with-pound-signs automatically for you. For example, in IDLE on my machine, it's Alt-3 and Alt-4.

Don't use triple-quotes; as you discovered, this is for documentation strings, not block comments, although it has a similar effect. If you're just commenting things out temporarily, this is fine as a temporary measure.

link|flag
vote up 17 vote down

The only cure I know for this is a good editor. Sorry.

link|flag
+0.5 for mentioning that python-aware editors usually help with this need. +0.5 for doing so without starting an editor flame-war by mentioning any editor in particular :-) – Jarret Hardie Mar 23 at 22:43
1  
Clearly, all Real Python Programmers use ed, where this problem is easily solved with: 12,31s/^/#/ – John Fouhy Mar 23 at 23:49
Tsk. Tsk. You forgot the trademark! "Real Python Programmers" (tm) :-) – Jarret Hardie Mar 24 at 0:54
vote up 8 vote down

The only way you can do this without triple quotes is to add an:

if False:

And then indent all your code. Note that the code will still need to have proper syntax.


Many python IDE's can add # for you on each selected line, and remove them when un-commenting too. Likewise if you use vi or emacs you can create a macro to do this for you for a block of code.

link|flag
The op mentioned that they do not want the comments to appear as doc strings. – Ed Swangren Mar 23 at 22:22
ah, my bad. I gave another suggestion. – Brian R. Bondy Mar 23 at 22:24
I like this. I'd use if False: though. Not that it matters. – recursive Mar 23 at 22:26
@recursive: ya changed to if False: – Brian R. Bondy Mar 23 at 22:26
-1 retracted. That's a clever idea, though it may mean that the comments need comments :) – Ed Swangren Mar 23 at 22:49
show 1 more comment
vote up 8 vote down

This question was answered previously here: http://stackoverflow.com/questions/397148/why-doesnt-python-have-multline-comments

link|flag
vote up 3 vote down

Hide the triple quotes in a context that won't be mistaken for a docstring, eg:

'''
...statements...
''' and None

or:

if False: '''
...statements...
'''
link|flag
vote up 1 vote down

M-x comment-region, in emacs Python mode.

link|flag
M-; (comment-dwim) too – RamyenHead Sep 23 at 8:23
vote up 0 vote down

The only mechanism to comment out python code (understood as code ignored by the interpreter) is the #.

As you say, you can also use string literals, that are not ignored by the interpreter but can be completely irrelevant for the program execution.

link|flag
vote up 0 vote down

Use a nice editor like SciTe, select your code, press Ctrl+Q and done.

If you don't have an editor that supports block comments you can use a triple quoted string at the start and the end of your code block to 'effectively' comment it out. Not the best practice though.

link|flag
vote up 0 vote down

Triple quotes are OK to me. You can use ''' foo ''' for docstrings and """ bar """ for comments or vice-versa to make the code more readable.

link|flag
vote up 0 vote down

At least in VIM you can select the first column of text you want to insert using Block Visual mode (CTRL+V in non-windows VIMs) and then prepend a # before each line using this sequence:

I#<esc>

In Block Visual mode I moves to insert mode with the cursor before the block on its first line. The inserted text is copied before each line in the block.

link|flag

Your Answer

Get an OpenID
or

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