Computer Science, asked by pavanisaipala2184, 1 year ago

Explain Comments in Python.

Answers

Answered by sangitasurve305
3

Components are objects that are associated with interfaces. An interface is a Python object that describes how you work with other Python objects

Answered by Adwaitm
4

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. A hash character within a string literal is just a hash character.

Similar questions