how to make a long comment in python code example
Example 1: python big comment
# one hashtag for a single line comment
"""
3 quote marks is technically
a docstring, but it works as
a multi line comment
"""
##pressing 'Alt 3' in IDLE comments out
##what you are selecting
and 'Alt 4' to uncomment
if False:
print('Hello') # yes you can do it at the end of a line
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.
Example 2: python multiline comment
#%% There are not multiline comments in python,
# this # is the only form of commenting but, people use
# """triple quotes""" for multiline commenting but this
# is actually a String the interpreter will read and
# will ocupy memory. If you dont put this kind of string
# into a variable it will be collected on execution