Branching statements in Python are used to change the normal flow of execution based on some condition.
Python provides three branching statements break, continue and return.
In Python pass also a branching statement, but it is a null statement.
The return branching statement is used to explicitly return from a method.