Explain Comments in Python.
Answers
Answered by
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
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