If Statements and Conditions
Ever needed your code to be smart for once? You can use If Statements!
If statements run a block of code depending on if a condition (boolean) is true. Here's an example code.
For example, in the code above, if the condition inside the parameters, num > 2 (num = 3) is true, the print statement will run. Now, let's say we changed the value of i to something like 1.
Else-If Statements
Notice how the code doesn't print anything. Now, what if you wanted to check if num was greater than 2 and smaller than- let's say 7. We can do this:
Else-if statements are similar to if-statements but run when the previous conditions are false. They provide additional criteria for the code. In the code above, the else-if statement will run if num is greater than 2 and less than 7.
You can stack else-if statements, creating a chain of if/else-if statements. These are useful to check for a bunch of different scenarios.
However- what if all of these conditions were false? Use an else statement!
Else Statements
Else statements are like the catch-all statement. If somehow the rest of the if statements don't run, this is run. (If you want to think of it like this, else statements are basically else if (true)
)
As you can see, the else-statement is ran instead of the other conditions, as the other ones were false..
Last updated