comment various lines python code example

Example 1: python comment multiple lines

#There is no way to comment multiple lines in Python.
#You just keep using "#" symbol to comment each line out.

'''
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: comment all selected lines in python

Select relevant lines to be commented, then use ctrl+/