20. “Comments are useful and easy way to enhance readability and understandability of a program. Elaborate with examples.

Comments help explain what’s being done. e.g.

def add(x, y): # function to add two numbers
    return x+y