Elif and Else Statements
There are times where we need to check a variety of values to determine what should be done. Think about getting a grade for your mark. School's usually have many possible grades your mark can fall into: A, B, C etc. Let's a write a function that returns a grade.
After the first if statement, we can have more options to check. We use elif ("else if") statements to do additional comparisons and run different code. At the end, and only at the end, we used an else statement. This executes as long as no previous condition in the if statement was true. Not too bad right?
What if we wrote multiple ifs?
A mark of 99 should have been an A but we got a C. When the function is called with 99, it first checks if it's greater than 90. It is so result is set to A. As we don't use elif
the function continues to check if the mark is greater than 80. 99 is greater than 80 so result is now B. The next if statement makes the result C as 99 is greater than 70. Luckily 99 is not less than 70 so the we don't see an F. In this case, elif
statements would help bring the right results.
Last updated