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.

Respuesta :

Answer:

d. specifying the intent of the program

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.