Answers for "how to comment a section in python"

6

comments in python

#this is commented
'''
this
is
also 
a 
comment
'''
Posted by: Guest on August-25-2020
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
6

comments in python

# This is a comment
Posted by: Guest on July-04-2020
5

how to comment python

# This is a comment
'''
This is a
MULTI LINE comment!
'''
Posted by: Guest on September-06-2020
1

comment in python

#This is a comment
Posted by: Guest on March-07-2020

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

Python Answers by Framework

Browse Popular Code Answers by Language