Python Comments
Comments can be used to explain Python code.
Comments can be used to make the code more readable.
Comments can be used to prevent execution when testing code.
Creating a Comment
Comments starts with a #
, and Python will
ignore them:
Comments can be placed at the end of a line, and Python will ignore the rest of the line:
Comments does not have to be text to explain the code, it can also be used to prevent Python from executing code:
Copyright 1999-2023 by Refsnes Data. All Rights Reserved.