1#There is no way to comment multiple lines in Python.
2#You just keep using "#" symbol to comment each line out.
3
4'''
5Technically you could also use triple single quotation
6marks like so, but this formatting does not count
7as "true" source code comments that are removed by
8a Python parser.
9'''
1# 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
3# to use consecutive single-line comments.
4# feelsbadman