Python Basics - Comments:
Comments can be used to create notes between your codes for your/reader's understanding, they are not included in the code.
There are two ways to make a comment in your code: single-line comment and multi-line comment.
We use hash for single-line comment.
We use three pairs of double quotation for multi line comment.
We can also use three pairs of single quotation for multi line comment.