What is a comment ? In how many ways can you create comments in Python ?

Comments are lines in a program to better understand the code. It is ignored by the interpreter and used by people for easy readability. Comments in python can be added as single line comments using ‘#’ or multi line comments using triple quotes “”” comment “””.