Computer Science, asked by gunasree92, 4 months ago

how do you create multiline comment in python​

Answers

Answered by malavika5596
0

Answer:

Multi-line Comments in Python – Key Takeaways

  1. Unlike other programming languages Python doesn't support multi-line comment blocks out of the box.
  2. The recommended way to comment out multiple lines of code in Python is to use consecutive # single-line comments.
Answered by ItzStrawBerry
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