Conditional Execution (Part II) Archive
24 Oct 2014
Conditional Execution in Python (Part II)

In order to write useful programs, we almost always need the ability to check conditions and change the behavior of the program accordingly. Conditional statements give us this ability. The simplest form is the if statement: if x > 0 : print ‘x is positive’ The boolean expression after the if statement is called the