2.0.2 - No comments or more comments

So, what if you have a complicated coding idea that needs hundreds of coding lines to write and lots of hours to describe them to a friend?
Taking notes onto the program is a good approach. Python gives this capability by using special character # and three single quotes '''
Examples:

>>> # Everything in this line will not be executed

>>> print("Hello")#Anything from this point will be ignored until changing line



'''

Everything between three single quotes will not be executed


'''