Python Comments
In Python, we can include texts which will not be
executed, called
comments.
Comments are used by programmers to explain a complex code in simple english.
Single line comments start with a hashtag(#).
If we need to have multi-line comments we can use three double quotes. It won't get executed.