Decision-making is the anticipation of conditions occurring during the execution of a program and specified actions taken according to the conditions.

Decision structures evaluate multiple expressions, which produce TRUE or FALSE as the outcome. You need to determine which action to take and which statements to execute if the outcome is TRUE or FALSE otherwise.

Following is the general form of a typical decision making structure found in most of the programming languages −

Decision making

Python programming language assumes any non-zero and non-null values as TRUE, and any zero or null values as FALSE value.

Python programming language provides the following types of decision-making statements.

Sr.No.Statement & Description
1if statements

An if statement consists of a boolean expression followed by one or more statements.

2if...else statements

An if statement can be followed by an optional else statement, which executes when the boolean expression is FALSE.

3nested if statements

You can use one if or else if statement inside another if or else if statement(s).


Program:

  If Example in Python
age = 20
if age > 18:
    print("You are Adult")

Output:

You are Adult

Do you Know?
Progamming is what actually means ?

What is software development ?

How we categorized software development in different manner.

C Programming
C Plus Plus
Python
Java Development
Web Designing
Javascript
Mysql
Oracle
We cover all the programming concepts in various programming languages, this tutorials are very help full for bigener as well as Experience developer, for the ease of understanding we categorized programming in different manner likewise.