[python]Comment
We can use
# comment
to coment a row or several rows
still we can use a more effecient way to comment multiple lines
'''start
... ...
end'''
where the ''' is triple-quoted mark in which the content will be ignored by the interpreter.
We can use
# comment
to coment a row or several rows
still we can use a more effecient way to comment multiple lines
'''start
... ...
end'''
where the ''' is triple-quoted mark in which the content will be ignored by the interpreter.