I myself like to use triple-quotes to comment out blocks of code while I’m iterating on my app, so I typically do this:
_ = """
code to comment out
more code
"""
Assigning it to a variable means that it won’t magically be printed
Assigning it to _ (a standard throw-away variable) means that my auto-linters won’t complain about a variable that I’m not using