Computer Science, asked by hamanya, 8 months ago

what is comment in python

Answers

Answered by tikatika16
5

Answer:

A comment is text that doesn't affect the outcome of a code, it is just a piece of text to let someone know what you have done in a program or what is being done in a block of code.

Answered by kunjika158
1

Answer:

Comments in Python start with the hash character, # , and extend to the end of the physical line. A comment may appear at the start of a line or following whitespace or code, but not within a string literal.

Hope it helps you

Similar questions