how to mark in # python code example
Example 1: python comment
# Single line Comment
"""
(''' single quotes ''') will also work
Multi Line
Comment
"""
Example 2: big comments python
# One line Comment
myvar = 5 # Can also start after any chunk of code
"""
Big multiple lines comment
So many lines
WoW
"""