Answers for "which character is used in python to make a single line comment?"

35

python comments

#A single line comment, also known as an end of line comment.

"""This is a longer 
  multiline comment.
"""
Posted by: Guest on November-12-2021
0

python comment

# Single Line Comment.
'''
Multiple Line Comment.
There's no Multiple Line Comment in python.
Use string tag to comment.
Three single quote at the start and the end.
'''
Posted by: Guest on December-04-2021

Code answers related to "which character is used in python to make a single line comment?"

Python Answers by Framework

Browse Popular Code Answers by Language