if statements
Link to view video at TMCif condition:
    statements
regularFlow
if( condition ){
    statements;
}
regularFlow;
if condition:
    statements
else:
    statements
regularFlow
if( condition ){
    statements;
}else{
    statements;
}
regularFlow;
if condition:
    statements
elif otherCondition:
    statements
else:
    statements
regularFlow
if( condition ){
    statements;
}else if( otherCondition ){
    statements;
}else{
    statements;
}
regularFlow;