comment all lines in python 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: multiline comment in python
'''
Like This
But only for Python
As far as i know
'''
Example 3: python multi comment
"""Put comments inside triple quotes"""
Example 4: comment all selected lines in python
Select relevant lines to be commented, then use ctrl+/