Introduction Python Tutorial

# The number of spaces in the indentation is variable, 
# but all statements within the block must be indented the same amount. 
if True:
    print "True"
else:
    print "False"