Python elif keyword

python elif keyword

Python elif keyword is used to provide an alternative course of action to take if the expression in an if statement turns out False.

Python continue keyword

python continue keyword

Python continue keyword allows you to control the execution of a loop based on a specific condition. When the interpreter encounters the continue statement, it jumps to the beginning of the loop, ignoring any code that follows it in the…