When you have a block that starts with a phrase that ends in a colon, you need to indent the next lines until you are done. This goes for loops, if statements, etc.
if 0!=-1:
print "Good!"
while 0!=-1:
print "BWAHAHAHA"
for i in range(1,100):
print i
try:
print blah
except NameError:
print "Blah is not defined"