what is colour of multiline comment in python?
Answers
Answered by
3
Explanation:
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