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# 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# To make a Python Comment just use # and type.
2"""
3For Multi-Line Comments
4Use Three """
5"""
1# Just put a hash before the comment. This can help other collaborators understand what you are doing, or help you remember the intention of a certain line of code. It should appear gray. Oh - and by the way, the Python computer ignores your comments.