Computer Science, asked by Anonymous, 8 months ago

what are multi line comments in python language ?

Answers

Answered by kha72
2

Answer:

For writing “proper” multi-line comments in Python is to use multi-line strings with the """ syntax Python has the documentation strings (or docstrings) feature. It gives programmers an easy way of adding quick notes with every Python module, function, class, and method

Answered by Harddyharshvc
2

Explanation:

Multi-line Comments in Python – Key Takeaways. Unlike other programming languages Python doesn't support multi-line comment blocks out of the box. The recommended way to comment out multiple lines of code in Python is to use consecutive # single-line comments...

Similar questions