elif
The elif keyword is a contracted form of the C++ else if statement.
Syntax
if (condition)
{
}
elif (condition2)
{
}
The elif keyword is a contracted form of the C++ else if statement.
if (condition)
{
}
elif (condition2)
{
}