1# While Python doesn't support multi-line comments, it can ignore anything
2'''
3inside a multi-line string!
4Just wrap the comment in the three single quote marks,
5And
6you're
7good
8to
9go!
10'''
1#There is no way to comment multiple lines in Python.
2#You just keep using "#" symbol to comment each line out.
3
4'''
5Technically you could also use triple single quotation
6marks like so, but this formatting does not count
7as "true" source code comments that are removed by
8a Python parser.
9'''
1# To make a Python Comment just use # and type.
2"""
3For Multi-Line Comments
4Use Three """
5"""
1# Python doesn't support multi-line comment blocks out of the box.
2# The recommended way to comment out multiple lines of code in Python is
3# to use consecutive single-line comments.
4# feelsbadman
1#%% There are not multiline comments in python,
2# this # is the only form of commenting but, people use
3# """triple quotes""" for multiline commenting but this
4# is actually a String the interpreter will read and
5# will ocupy memory. If you dont put this kind of string
6# into a variable it will be collected on execution
1# Single line Comment
2
3"""
4 (''' single quotes ''') will also work
5 Multi Line
6 Comment
7"""