how to comment code python code example
Example 1: python comment
""" This is a comment"""
"""
This is a comment
Also this is a comment
"""
Example 2: 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 3: comment in python
"""
This is a comment for multiple lines,
as you can see
"""
""" But also this is valid """
Example 4: python comments