IF CONDITIONAL STATEMENT OF PYTHON

Raghav Jha
May 29, 2022

python we used conditonal statement used with boolean term the are used to find the test expression in python we have used different type of condtional statement.

If conditional statement Flow Chart

if flow chart

IF Conditional Statement bassically called the test expression.the check the condtion In two term True and False.

Whenever we write some program.First the Can Check the conditon if the conditon stasifiy the last condtion go for next statement if the last conditon not stasifiy the go for the first statement.

if (a<b):
return a
that means first we check the condtion .if condtion stasify return a . if the conditon not stasify go back to the last statement a.

SYNTAX OF IF STATEMENT

if test expression:
statement

THANK YOU

--

--