What are comments in Python?

 

Answer:

Comments are used to add a note, remark or explanation in the source code. They are not executed by the interpreter. 

  • Comments can be used to explain Python code.
  • Comments can be used to make the code more readable.
  • Comments can be used to prevent execution when testing code.

A comment starts with # (hash sign) . Everything following the # till the end of that line is treated as a comment.

Examples:

  • #This is a comment
  • #print(“Hello world”)

 

Ask a doubt
Davneet Singh's photo - Co-founder, Teachoo

Made by

Davneet Singh

Davneet Singh has done his B.Tech from Indian Institute of Technology, Kanpur. He has been teaching from the past 14 years. He provides courses for Maths, Science, Social Science, Physics, Chemistry, Computer Science at Teachoo.