Computer Science, asked by dheeraj652, 11 months ago

In Payton comments start with which symbol

Answers

Answered by himanshukharpade5
0

Answer:

Comments in Python start with the hash character, # , and extend to the end of the physical line.

Answered by adventureisland
1

Answer:

In python, every comment starts with a # symbol.  

Explanation:

Comments is a section in every code where we can write anything as a text describing about the program or function. It is used for better understanding of the entire code.

# hash character is used to comment out single statements while we can use multiple strings like “ “ “ quotes three times at the start of the line and also we need to add same three quotes “”” at the end of the line.

Similar questions