Computer Science, asked by ummul5083, 7 months ago

What are the comments in Python?

Answers

Answered by satyamc1568
11

Answer:

Python comments

Lets first understand the need of comments in Python or in any programming language. 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.

Plz mark me as brainliest!!!!

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.

Similar questions