Computer Science, asked by tyagihitesh001, 9 months ago

what is the use of elif

Answers

Answered by komal1234567
1

The elif is short for else if. It allows us to check for multiple expressions. If the condition for if is False , it checks the condition of the next elif block and so on. If all the conditions are False , body of else is executed.

Similar questions