Python Comments
It helps us understand the code better.
Comments can be used to prevent execution when testing code.
Creating a Comment
Comments starts with a #, and Python will ignore them:
Example
#This is a comment print("Hello, CodeLines!")
Multiline comments
To add a multiline comment you could insert a # for each line: