Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have recently started studying python and I didn't find anywhere discussing about multi-line comments. Most languages will have block comment symbol like

/* 

*/

I tried with this but it is throwing error, may be this is not correct way. Does python really have multiline comment feature?

share|improve this question

4 Answers

up vote 96 down vote accepted

You can use triple-quoted strings. When they're not a docstring (first thing in a class/function/module), they are ignored.

Guido van Rossum (creator of Python) approves.

'''
This is a multiline
comment.
'''
share|improve this answer
1  
Hm. I put a huge multiline string in a python script test.py just to see. When I do import test, a test.pyc file is generated. Unfortunately, the pyc file is huge and contains the entire string as plain text. Am I misunderstanding something, or is this tweet incorrect? – unutbu Oct 8 '11 at 13:18
3  
@unutbu, if it was the only thing in the file, it was a docstring. Put some code before it and it'll disappear from the pyc. I edited the answer and put „module“ to the list of things that have docstrings. – Petr Viktorin Oct 8 '11 at 13:21
4  
I don't like multiline string as comments. Syntax highlighting marks them as strings, not as comments. I like to use a decent editor that automatically deals with commenting out regions and wrapping multiline comments while I type. Of course, it's a matter of taste. – Sven Marnach Oct 8 '11 at 13:31
1  
While my editor highlights them correctly, I agree that just using ctrl-something to comment/uncomment several lines is simpler and looks better in my opinion (but then I'm also not using /* */ in Java, C# or c++). Just a matter of taste I assume ;) – Voo Oct 8 '11 at 14:30
2  
As a convention I find it helpful to use """ for docstrings and ''' for block comments. In this manner you can wrap ''' around your usual docstrings without conflict. – Roshambo Dec 18 '12 at 20:03
show 4 more comments

Python does not have a multiline comment syntax, but your editor should be able to comment-out a selected region (by placing a # in front of each line individually). If not, switch to an editor that does.

Programming in Python without certain text editing features can be a painful experience. Finding the right editor (and knowing how to use it) can make a big difference in how the Python programming experience is perceived.

Not only should the editor be able to comment-out selected regions, it should also be able to shift blocks of code to the left and right easily, and should automatically place the cursor at the current indentation level when you press Enter. Code folding can also be useful.

share|improve this answer
+1 for the additional info on picking the right editor! – Treebranch Oct 5 '12 at 17:57

AFAIK, Python doesn't have block comments. For commenting individual lines, you can use the # character.

If you are using Notepad++, there is a shortcut for block commenting. I'm sure others like gVim and emacs have similar features.

share|improve this answer

I think it doesn't, excepting a Multiline string that isn't processed.

However,
most, if not all python IDE's have a shortkey for 'commenting out' multiple lines of code.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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