Jump Statement in Python with Examples

Jump statement is used to transfer the control from one part of program to another part. In Python, There are three types of Jump statements. break continue pass break The break statement immediately terminates a loop and control of the program go the next body of the loop. When the break statement is executed, the … Continue reading Jump Statement in Python with Examples