1# this is a single line comment, python ignores these
2foo = "bar" # can be placed after code
3
4"""
5python doesnt have multiline comments
6so multiline strings do the tricks
7
8this works because python ignores string literals that arentassigned to a varaible
9"""
10
11# comments can be used as notes for the dude editing the script
1# Single line Comment
2
3"""
4 (''' single quotes ''') will also work
5 Multi Line
6 Comment
7"""
1#This is a comment
2#And another one
3print("Hello !) #Comment in the same line
4
5"""
6A multiline
7comment
8"""
9print("Hello !)