There is nothing called multi-line comment in python. Python by default does not contain special characters to make multi-line comments but still you can comment lines in the following way:
'''
This is a mutli-line comment.
it uses single quotes.
there is another way you can do it
'''
or you can do it like this
"""
This is a mutli-line comment.
it uses double quotes.
this is the other way you can do it
"""
When you use quotes, it is treated as a regular string but because it is not used in combination with printing statement or for any other task, it works like a multi-line comment