DavidSzczesniak
11/7/2017 - 9:19 PM

Python Comments

Example of comments in Python. Both single and multple line.

# This is a single line comment

'''
This is a multi line
comment 
'''

"""
This is also a multi
line comment
"""