python doc comments code example
Example 1: python comments
something = 1
"""If you don't want to write a comments using hashtags,
you can put them in a multi-line comment block.
However, if you put hashtags in strings, they do not
create comments.
"""
Example 2: python comments
Example 3: python function docstring
def functionName():
"""
This is a function docstring
"""
Example 4: python comments
"""
For multi-line comments,
use three hashtags! can not go in the end of a line of code.
"""
Example 5: python comments