'''comment are not shown when you run a program they are used to describe the what type of the code we have done''' #you can comment in two way #1.sinle line comment (use # symbol before comment) #this is simple single line commment #2.multiline commnet use('''comment here''') ''' this is first line this is second line this is third line ''' #Note: do not put # inside a qoutes print('# this is not a comment') #this is comment