Condition
if condition:
    code_block
elif another_condition:
    another_codeblock
else:
    codeblock
A condition is false if the value of the expression is false
False values are:
0, 0.0, 0L, [], (), {}, None
All other values are true