Answers for "python comment"

10

comment in python

# This is a one line comment

"""
This is a comment for multiple lines,
as you can see
"""

""" But also this is valid """
Posted by: Guest on October-05-2020
23

python comment

# This is a comment

""" This is a comment"""

"""
This is a comment
Also this is a comment
"""
Posted by: Guest on March-31-2020
12

python comment

# To make a Python Comment just use # and type.
""" 
For Multi-Line Comments
Use Three """
"""
Posted by: Guest on June-22-2020
10

python comment

# This line is cemmented out
Posted by: Guest on January-19-2020
4

python comment

# Single line Comment

"""
	(''' single quotes ''') will also work
	Multi Line
	Comment
"""
Posted by: Guest on November-11-2020
1

python comment

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

Python Answers by Framework

Browse Popular Code Answers by Language