Comments are the piece of code that is generally ignored by the Interpreter, it helps the programmer to keep track of the code, organize it properly, and Maintain the code collectively in a team.
It’s helpful and considered good practice to comment on your code because
There are 2 types of comments in Python:
Single Line Comments in Python:
#this line is a comment print('Hello') # anything after hash is a comment like this
''' I am a multiline comment! ''' print("Hello World!") """ I am a also multiline comment! """