a. The -
statement is used to display the output.
b. If a line begins with #it is completely
by the interpreter
Answers
Comments in Python start with a # character. However, alternatively at times, commenting is done using docstrings(strings enclosed within triple quotes), which are described further in this article.Comments in Python start with a # character. However, alternatively at times, commenting is done using docstrings(strings enclosed within triple quotes), which are described further in this article.Example:Comments in Python start with a # character. However, alternatively at times, commenting is done using docstrings(strings enclosed within triple quotes), which are described further in this article.Example:#Comments in Python start like thisComments in Python start with a # character. However, alternatively at times, commenting is done using docstrings(strings enclosed within triple quotes), which are described further in this article.Example:#Comments in Python start like thisprint("Comments in Python start with a #")Comments in Python start with a # character. However, alternatively at times, commenting is done using docstrings(strings enclosed within triple quotes), which are described further in this article.Example:#Comments in Python start like thisprint("Comments in Python start with a #")Output: Comments in Python start with a #Comments in Python start with a # character. However, alternatively at times, commenting is done using docstrings(strings enclosed within triple quotes), which are described further in this article.Example:#Comments in Python start like thisprint("Comments in Python start with a #")Output: Comments in Python start with a #As you can see in the above output, the print statement is executed whereas the comment statement is not present in the output.