hoe to multiple line comment out i python code example
Example 1: multiline comment python
# While Python doesn't support multi-line comments, it can ignore anything
'''
inside a multi-line string!
Just wrap the comment in the three single quote marks,
And
you're
good
to
go!
'''
Example 2: Single line Commenting in Python
#This line won't be printed