R. David Murray added the comment:
A comment is a comment. *All* characters after the # are ignored, including
other #s.
Also, Python doesn't have multiline comments. (Well, you can use a triple
quoted string as a multiline comment, but it is still a string, and follows the
syntax rules of
New submission from Nul Character :
When attempting to comment out a comment and thus nullifying it, the
interpreter just double comments the line. This behavior works with multiline
comments, however, the single line comments "double-comment" the line.
--
components: Interpreter Core