xxxxxxxxxx
#There is no way to comment multiple lines in Python.
#You just keep using "#" symbol to comment each line out.
'''
Technically you could also use triple single quotation
marks like so, but this formatting does not count
as "true" source code comments that are removed by
a Python parser.
'''
xxxxxxxxxx
# This is a "block comment" in Python, made
# out of several single-line comments.
# for this select the code and use shortcut Ctrl + /
xxxxxxxxxx
# Multi-line comment select the lines to be commented.
Ctrl + 4.
# Unblock Multi-line comment.
Ctrl + 5.