Python ignores text written in the ___________________.
Answers
Answered by
0
Python ignores text written in the comments.
Extra Knowledge
Comments are of two types :
1. Multi-line comment - written within triple quotes. 2. Single line comment - written after a hash symbol (#).
Example :
'''
This is multi line
comment
'''
#This is single line comment
Similar questions