Computer Science, asked by jinia19, 17 hours ago

In Python comment begins with--------- character​


anindyaadhikari13: Comment begins with # character.

Answers

Answered by adyav291105
4

Answer:

Comment Syntax

Comments in Python begin with a hash mark ( # ) and whitespace character and continue to the end of the line.

hope it help u

mark me Branilest

Answered by profdambaldor
4

Answer:

1) One liner: starts with # symbol

2) Multiliner comments: starts with """ and end with """.

Explanation:

There are two types of comments.

1) One liner: starts with # symbol

Eg. #This is comment

2) Multiliner comments: starts with """ and end with """.

Eg1. ''' This is  

a comment

'''

Eg2.

"""

And this is also a

comment.

"""  

Similar questions