1# one hashtag for a single line comment
2
3"""
43 quote marks is technically
5a docstring, but it works as
6a multi line comment
7"""
8
9##pressing 'Alt 3' in IDLE comments out
10##what you are selecting
11and 'Alt 4' to uncomment
12
13if False:
14 print('Hello') # yes you can do it at the end of a line
15 you can technically put if False around code you dont want it to run,
16 but that would mean it has to have correct syntax,
17 and would not be good for readability.
1# One line Comment
2myvar = 5 # Can also start after any chunk of code
3
4"""
5Big multiple lines comment
6So many lines
7WoW
8"""