Comments
Creating a comment
We can create a comment using "#" in python
For example:
These comments are ignored by the compiler and will not interpret.
When it comes to Multi-line comment, Python doesn't support any specific multiline comments but however, you can use the """triple quotes""" , as these strings are not assigned to any variable python interpreter will read the code and ignore the sentence inside the quotes as they haven't assigned to any specific variable.
Here is an example for that:
Comments