how do you create multiline comment in python
Answers
Answered by
0
Answer:
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.
Answered by
0
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. This is the only way to get “true” source code comments that are removed by the Python parser.
Similar questions