In this example we will show how to create a multiline comment using # in Python.
Source Code
# This is the first line of the multiline comment
# This is the second line of the multiline comment
# This is the third line of the multiline comment
print('I love Python!')
Output:
I love Python!