The if statement is used for conditional execution:
if_stmt: "if" expression ":" suite ("elif" expression ":" suite)* ["else" ":" suite]
It selects exactly one of the suites by evaluating the expressions one
by one until one is found to be true (see section
See About this document... for information on suggesting changes.