Slide 1: Decision Making Statements
Slide 1: Decision Making Statements
Slide 2: Objectives
Title: Objectives
Subtitle: To familiarize with
Content:
Definition of decision making
If statement
If and else statement
Elif statement
Nested if statements
Slide 5: if Statement
Title: if Statement
Subtitle:
Content:
The IF statement is similar to that of other languages.
The if statement contains a logical expression using which the data
is compared and a decision is made based on the result of the
comparison.
Title: if Statement
Subtitle: Syntax
Content:
if expression:
statement(s)
If the boolean expression evaluates to TRUE, then the block of
statement(s) inside the if statement is executed.
Title: if Statement
Subtitle: Flow Diagram
Content:
You can use one if or else if statement inside another if or else if
statement(s).
Title: if Statement
Subtitle: Example
Content:
Example code demonstrating the use of if statement in Python.