1select the lines you want to comment
2and 'use Ctrl + / to comment all of the selected text'.
3To uncomment do the same thing.
4OR
5put a '#' before each line
6
7eg : #This is a comment
1# One line Comment
2myvar = 5 # Can also start after any chunk of code
3
4"""
5Big multiple lines comment
6So many lines
7WoW
8"""