how to make bigger space comment python code example
Example 1: big comments python
# One line Comment
myvar = 5 # Can also start after any chunk of code
"""
Big multiple lines comment
So many lines
WoW
"""
Example 2: multiline comment python stack overflow
'''
This is a multiline
comment. AKA a docstring
'''