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 comment
2# Python ignores comments,
3something = 1 # and you can place them after any line of code
4
5"""If you don't want to write a comments using hashtags,
6you can put them in a multi-line comment block.
7However, if you put hashtags in strings, they do not
8create comments.
9"""
10# comments serve as notes to the programmers
11# you can write whatever you want in comments
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 """