But what if we want to execute different code depending on something? That's when if comes in. An important thing to notice is that the line with a print is indented. You can press the tab key, or if ...
The `if` statement in Python allows you to execute a block of code if a specified condition is true. - Use the `else` clause to define code that runs if the condition is false.