Using Code Indentation : Code Indetion « 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"








1.2.Code Indetion
1.2.1.Using Code Indentation