Python If Else:
Python If Else statement is a conditional statement, which can be used in various forms to check a condition or multiple conditions and to perform the specified action or actions, if the particular condition is true.
..else:
If else statement is used to perform an action if a single condition is true and to perform another action if that condition is false. The else keyword considers everything which was not considered by the preceding conditions.
Syntax:
if (condition):
Execute this code if this condition is true
else:
Execute this code if all the conditions are false
Example:
//pythonexample.py
a = "230" if (a == "256"): print a else: print "Error in Value" |
Output: