Comment block python code example
Example 1: python comment
""" This is a comment"""
"""
This is a comment
Also this is a comment
"""
Example 2: multiline comments coding
/* == start
*/ == end
/* PUT MULTILINE
COMMENT HERE (between
the two delimeters). */
Example 3: how to make a comment python
'''
You can also make a multi line comment
With three single quotes at the beginning and end!
'''
Example 4: 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 5: comments in python
'''
this
is
also
a
comment
'''
Example 6: python big comment
"""
3 quote marks is technically
a docstring, but it works as
a multi line comment
"""
and 'Alt 4' to uncomment
if False:
print('Hello')
you can technically put if False around code you dont want it to run,
but that would mean it has to have correct syntax,
and would not be good for readability.