210k views
1 vote
Comments are useful for:

a. specifying the intent of the program specifying how the interpreter should handle non-standard Python statements.
b. specifying which Python libraries the interpreter should use.
c. making a bunch of meaningless remarks that confuse programmers.
d. specifying the intent of the program.

1 Answer

5 votes

Answer:

d. specifying the intent of the program

Step-by-step explanation:

It is usually a good practice around programmers to include "comments" in their program. These comments basically specify about various things going on in the program so that anyone who reads it can understand how the program works.

Comments are ignored by the interpreter. They are only for the understanding of humans not for machines.

User Tim Biegeleisen
by
7.7k points