1# You use a hastag at the beginning of the line to make anything after it a comment
2'''
3You can also make a multi line comment
4With three single quotes at the beginning and end!
5'''
1# This is a comment
2
3""" This is a comment"""
4
5"""
6This is a comment
7Also this is a comment
8"""
9
1# To make a Python Comment just use # and type.
2"""
3For Multi-Line Comments
4Use Three """
5"""
1# Single line Comment
2
3"""
4 (''' single quotes ''') will also work
5 Multi Line
6 Comment
7"""