python comment many lines code example
Example 1: python comment multiple lines
'''
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.
'''
Example 2: multiple comment line in python
'''
This is a multiline
comment.
'''
Example 3: big comments python
myvar = 5
"""
Big multiple lines comment
So many lines
WoW
"""
Example 4: python multi comment
"""Put comments inside triple quotes"""