Comments in Python:
✅Comments are part of a code that is ignored by the python interpreter.
✅Comments are used to understand the source code(program) to you and other people
(Programmer).
✅Two types of Comments in Python :
- Single line — # is used to write a single line comment in Python.
- Multi-line — Triple Quotes is used to write multiline comments in Python.