If-Else Statement In Python
The if-else statement is used in Python for decision making process. Anyway , the decision making is required when we would like to execute a result only if a excact condition is completed.
Else statement can also be combined with if statement. An else statement contains the block of code that executes if the conditional expression in the if statement resolves to 0 or a FALSE value.
The else statement is an optional statement and there could be at most only one else statement following if .


























No Comment to " If-Else Statement In Python "