Mega Code Archive

 
Categories / Python Tutorial / Introduction
 

Using Code Indentation

# 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"