Decision Making in The Python Programming
Decision Making in Python
In this lesson, we will understand what Decision Making is and different type of Decision Making statements in Python programming.
What is Decision Making
In Python programming, Decision Making is a process in which a programmer test certain conditions in the program. If the condition is true, then a set of statements are executed and if the condition is false, then another set of statements are executed.
In Python there are 3 types of Decision Making statements and they are:
- if Statement
- if else Statement
- if elif Statement
We will discuss all the decision making statements given above in the upcoming lessons.