If statements are control flow statements and it is run a particular code only when a condition is satisfied. It means that to print a message or result on the screen only when a condition is true and it condition is false then it is not print a message or result on screen. if..else, if..elif..else are other control flow statements available in Python.
Syntax:
if condition:
statement
Example:
a = True
if a==True:
print("Welcome")
print("To")
print("Career Bodh Sansthan")
Output:
Welcome
To
Career Bodh Sansthan
Example2:
a=10
if a>0:
print("Positive Number")
Output:
Positive Number
Example2:
a=-10
if a>0:
print("Positive Number")
Output:
No result on screen
Comentarios