Comments are some piece of English text which explains what this code does, we write comments in the code so that is easier for others to understand. A comment line starts with # , everything after that is ignored as comment, that means they don't effect on the program.
>>> #this is a comment >>> #the next line will add two numbers >>> a = 12 + 34 >>> print c #this is a comment too :)