how do we add comments in Python
Answers
Answered by
0
Answer:
To add a comment, we use the "#" symbol.
For example,
#This is a comment
Answered by
0
Answer:
- for adding a single line comment we use (#)
# welcome to python world
- for a multiline comment we use( ''')
- for eg-
'''welcome
to
python
world'''
#hope it helps you
please mark brainliest
Similar questions