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# This is a one line comment
2
3"""
4This is a comment for multiple lines,
5as you can see
6"""
7
8""" But also this is valid """