There are 3 types of transfer statements:
1. break : We can use break statement inside loops to break loop execution based on some condition.
2. continue : We can use continue statement to skip current iteration and continue next iteration.
3. pass : In our programming syntactically if block is required which won't do anything then we can define that empty block with pass keyword.