Home » Python control structure

Python control structure

Python break, pass and continue

python break

Python break facilitates the early exit from a loop. Control structure provides certain loops such as Python for loop, while loop, which helps in executing a block of code as many times as required. As a programmer, you can choose any looping structure which serves the purpose. On many occasions, you don’t want the loop to continue executing till the end but it

Python break, pass and continue Read More »

Python if else

python if else

Python if-else statement is a part of control structures (sometimes also known as Python flow control). Python if statement helps in making decisions in the program. This is probably the simplest yet most frequently used in Python for decision making. Python’s if-else statement works by evaluating a condition and subsequently making the decision. If a condition is met then execute a certain portion of the code

Python if else Read More »