Answers for "python block comment"

0

how to make a comment in python

#Single Line Comments!
"""
multiline
comments
!
"""
Posted by: Guest on October-25-2021
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
3

how to make a comment in python

#Use a hash
Posted by: Guest on September-19-2020
5

how to comment python

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

big comments python

# One line Comment
myvar = 5 # Can also start after any chunk of code

"""
Big multiple lines comment
So many lines
WoW
"""
Posted by: Guest on September-16-2020
0

multiline comments coding

/* == start 
*/ == end

/* PUT MULTILINE
COMMENT HERE (between 
the two delimeters). */
Posted by: Guest on September-28-2020

Python Answers by Framework

Browse Popular Code Answers by Language