How Can I Create a Multiline Comment

If you want to have a multiline comment in Python,
then you use triple quotes to begin the comment,
go however many lines you want to go, and then when you want to end it,
you use closing triple quotes.

In the following line below, we show a comment that spans multiple lines.