Answers for "how to comment a paragraph in python"

9

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
Posted by: Guest on May-05-2020
0

how to comment a para in python

"""
This is a comment
written in
more than just one line
"""
Posted by: Guest on March-26-2021

Code answers related to "how to comment a paragraph in python"

Python Answers by Framework

Browse Popular Code Answers by Language