Python Comments

Comments start with a hash sign. By adding comments to your code, you know what the code is trying to do when you go back to it after a long time.

# Prints out 'Hello World' 5 times.
for x in range(5):
print 'Hello world'


Next ...