If Else Statement Paython
Advertisements
If .... Else Statement in Python
In python if else statements are used for print any message of block on the basis of condition. if...elif...else statement is used in Python for decision making.
If Syntax Python
if test expression: statement(s)
If Example in Python
age = 20 if age > 18: print("You are Adult")
Output
You are Adult
If...else condition is useful where you need print at least one statement among two statement on the basis of condtion is true or false.
if...else Syntax Python
if test expression: Body of if else: Body of else
If..Else Example in Python
age = 20 if age > 18: print("You are Adult") else: print("You are not Adult")
Output
You are Adult
Google Advertisment