Answers for "coment in python"

6

comments in python

#this is commented
'''
this
is
also 
a 
comment
'''
Posted by: Guest on August-25-2020
4

python comment

# Single line Comment

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

comments in python

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

comment in python

# To make a comment in python use the hashtag symbol
Posted by: Guest on November-27-2020
4

comments in python 3

#This is a comment
#And another one
print("Hello !)  #Comment in the same line
      
"""
A multiline
comment
"""
print("Hello !)
Posted by: Guest on February-13-2021
-2

python commenting

this is a coment
# put your comment here
Posted by: Guest on December-11-2020

Python Answers by Framework

Browse Popular Code Answers by Language