Skip to content

elif

The elif keyword is a contracted form of the C++ else if statement.

Syntax

if (condition)
{
}
elif (condition2)
{
}