block comment in python 3 code example
Example 1: python comment block
"""
this
is
a multiline
comment
"""
Example 2: comment out a block in python
select the lines you want to comment
and 'use Ctrl + / to comment all of the selected text'.
To uncomment do the same thing.
OR
put a '#' before each line
eg : #This is a comment