0% found this document useful (0 votes)
10 views31 pages

Python If-Else Statement Explained

Uploaded by

sougandh112233
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
10 views31 pages

Python If-Else Statement Explained

Uploaded by

sougandh112233
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

Decision Making in The Python Programming

if else Statement in Python Programming


What is if else Statement

In Python program the if statement alone tells us that


if a condition is true then it will execute a block of
statements and if the condition is false it won’t. But
what-if we want to do something else if the condition is
false. Here comes the else statement. We can use the
else statement with if statement to execute a block of
code when the condition is false.

You might also like