Examveda
Examveda

What is the syntax used to write comments in Python?

A. // Comment

B. /* Comment */

C. # Comment

D. <!-- Comment -->

Answer: Option C

Solution(By Examveda Team)

In Python, the syntax used to write comments is # Comment.
Comments in Python are indicated by the pound sign (#) followed by the text of the comment. Anything following the # symbol on a line is considered a comment and is ignored by the Python interpreter during execution. Comments are used to add explanatory notes or annotations within the code to make it more readable and understandable for other programmers or for future reference.

This Question Belongs to Python Program >> Introduction To Python

Join The Discussion

Related Questions on Introduction to Python