"a is less than b\n", "a is definitely less than b\n", "Not sure if a is less than b\n" " print(\"a is less than b\")\n", " print(\"a is definitely less than b\")\n ...
GitHub

9_If_Else.py

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.