how to make multiple lines comment in python code example
Example 1: multiline comment python
'''
inside a multi-line string!
Just wrap the comment in the three single quote marks,
And
you're
good
to
go!
'''
Example 2: 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 3: multiline comment python
Example 4: multiline comment in python
'''
Like This
But only for Python
As far as i know
'''
Example 5: big comments python
myvar = 5
"""
Big multiple lines comment
So many lines
WoW
"""
Example 6: python multi comment
"""Put comments inside triple quotes"""