SlideShare a Scribd company logo
PART 4
IF ELSE STATEMENT IN PYTHON
• WANT TO LEARN PYTHON PROGRAMMING? (SUBTITLES)
• SUBSCRIBE
• TELEGRAM – FreeCodeSchool
• Twitter – shivammitra4
• LinkedIn – shivammitra
• Link in description
Checkout the Python tutorial playlist
AGENDA
• SIMPLE IF ELSE STATEMENT
• CONDITIONAL TESTS
• AND, OR OPERATOR
• ADVANCED IF ELSE STATEMENTS
EXAMPLE
• Example 1
• number = 2
• If number is odd, print “odd number”
• If number is even, print “even number”
• Example 2
• name = ‘Shivam’
• If name is ‘Shivam’, print it in capital letters
• Otherwise, print as it is
CONDITIONAL TESTS
• Conditional test
• If test is true, execute the code under if statement
• If test is false, ignore the code under if statement and move forward
CHECK FOR EQUALITY
• Equality operator returns True if value on left and right side matches.
Otherwise, False.
• Assignment operator(=) vs Equality operator(==)
• Assignment -> Storing a value in a variable
• Equality operator -> Are the values equal on both the sides ?
IGNORING THE CASE WHEN CHECKING FOR
EQUALITY
• Gmail – freecodeschool vs FreeCodeSchool (@gmail.com)
CHECKING FOR INEQUALITY
• If two values doesn’t match, True
• If two value matches, False
NUMERICAL COMPARISONS
PART 4 - Python Tutorial | If Else In Python With Examples
PART 4 - Python Tutorial | If Else In Python With Examples
CHECKING MULTIPLE CONDITIONS
• you might need two conditions to be True to take an action
• you might be satisfied with just one condition being True
• Keywords – and, or
USING AND TO CHECK MULTIPLE CONDITIONS
• Multiple tests
• If all test passes, return True
• If even one of the test fails, return False
• Checking happens in order
• If one test returns False, further checking doesn’t happen
• More than 2 tests are also possible
using parentheses
PART 4 - Python Tutorial | If Else In Python With Examples
USING OR TO CHECK MULTIPLE CONDITIONS
• Multiple tests
• If any one of the test passes, return True
• Go in order and stop when any test passes
• If all the test fails, return False
PART 4 - Python Tutorial | If Else In Python With Examples
CHECKING WHETHER A VALUS IS IN THE LIST
PART 4 - Python Tutorial | If Else In Python With Examples
CHECKING WHETHER A VALUE IS NOT IN THE
LIST
BOOLEAN EXPRESSIONS
• Another name for conditional statements
• A Boolean value is either True or False
IF STATEMENTS
SIMPLE IF STATEMENTS
PART 4 - Python Tutorial | If Else In Python With Examples
PART 4 - Python Tutorial | If Else In Python With Examples
PART 4 - Python Tutorial | If Else In Python With Examples
IF-ELSE STATEMENTS
PART 4 - Python Tutorial | If Else In Python With Examples
IF-ELIF-ELSE CHAIN
GRADING
• marks >= 90 and marks <= 100 – A
• marks >= 70 and marks < 90 – B
• marks >= 50 and marks < 70 – C
• marks >= 40 and marks < 50 – D
• Otherwise, F
PART 4 - Python Tutorial | If Else In Python With Examples
OMITTING THE ELSE BLOCK
TESTING MULTIPLE CONDITIONS
USING IF STATEMENTS WITH LISTS
• ODD EVEN EXAMPLE
• SEARCH A NAME EXAMPLE
CHECKING IF A LIST IS EMPTY
ASSIGNMENT
a = 2
b = 3
If a is greater than b, print “a > b”
If a is smaller than b, print “a < b”
If a is equal to b , print “a = b”
Note: a and b can take any values
WRITE SOME BASIC PROGRAMS IN PYTHON

More Related Content

What's hot (20)

PPT
Pattern matching
shravs_188
 
PPTX
Basics of python
SurjeetSinghSurjeetS
 
PPT
Python ppt
Mohita Pandey
 
PPTX
Introduction to the Python
BMS Institute of Technology and Management
 
PPTX
Interfaces in java
Shiv Mehmi
 
PDF
Introduction to python programming
Srinivas Narasegouda
 
PPTX
introduction to Python (for beginners)
guobichrng
 
PPT
Intro to Python
primeteacher32
 
PPTX
Types of Statements in Python Programming Language
Explore Skilled
 
PPTX
Beginning Python Programming
St. Petersburg College
 
PPTX
Introduction to the basics of Python programming (part 1)
Pedro Rodrigues
 
PPTX
Three address code In Compiler Design
Shine Raj
 
PPTX
Passing an Array to a Function (ICT Programming)
Fatima Kate Tanay
 
PPTX
Basic Python Programming: Part 01 and Part 02
Fariz Darari
 
PPTX
Fundamentals of Python Programming
Kamal Acharya
 
PPTX
Python in 30 minutes!
Fariz Darari
 
PDF
Python tuples and Dictionary
Aswini Dharmaraj
 
PPTX
Python - An Introduction
Swarit Wadhe
 
PDF
Overview of python 2019
Samir Mohanty
 
PPTX
Values and Data types in python
Jothi Thilaga P
 
Pattern matching
shravs_188
 
Basics of python
SurjeetSinghSurjeetS
 
Python ppt
Mohita Pandey
 
Introduction to the Python
BMS Institute of Technology and Management
 
Interfaces in java
Shiv Mehmi
 
Introduction to python programming
Srinivas Narasegouda
 
introduction to Python (for beginners)
guobichrng
 
Intro to Python
primeteacher32
 
Types of Statements in Python Programming Language
Explore Skilled
 
Beginning Python Programming
St. Petersburg College
 
Introduction to the basics of Python programming (part 1)
Pedro Rodrigues
 
Three address code In Compiler Design
Shine Raj
 
Passing an Array to a Function (ICT Programming)
Fatima Kate Tanay
 
Basic Python Programming: Part 01 and Part 02
Fariz Darari
 
Fundamentals of Python Programming
Kamal Acharya
 
Python in 30 minutes!
Fariz Darari
 
Python tuples and Dictionary
Aswini Dharmaraj
 
Python - An Introduction
Swarit Wadhe
 
Overview of python 2019
Samir Mohanty
 
Values and Data types in python
Jothi Thilaga P
 

Similar to PART 4 - Python Tutorial | If Else In Python With Examples (20)

PPTX
“Python” or “CPython” is written in C/C+
Mukeshpanigrahy1
 
PPT
introduction to python in english presentation file
RujanTimsina1
 
PPT
Chaptfffffuuer05.PPT
sdvdsvsdvsvds
 
PDF
ESIT135 Problem Solving Using Python Notes of Unit-1 and Unit-2
prasadmutkule1
 
PDF
if else python.pdf
Gshs6
 
PPTX
FLOWOFCONTROL-IF..ELSE PYTHON
vikram mahendra
 
PPT
python operators.ppt
ErnieAcuna
 
PPT
PythonCourse_03_Conditionals.ppt Python introduction turorial for beginner.
sakchaisengsui
 
PPTX
Introduction-to-Conditional-Statements-in-Python.pptx
sonybabu
 
PDF
23CSC101T PSPP python programming - UNIT 3.pdf
RajeshThanikachalam
 
PDF
23CSC101T PSPP python program - UNIT 3.pdf
RajeshThanikachalam
 
PPTX
Chapter 9 Conditional and Iterative Statements.pptx
XhelalSpahiu
 
PPTX
Brixton Library Technology Initiative Week1 Recap
Basil Bibi
 
PPTX
PYTHON BASICS CODING LANGUAGE GO TO.pptx
MohammedShoaib663271
 
PPTX
Baabtra.com little coder chapter - 5
baabtra.com - No. 1 supplier of quality freshers
 
PPT
Py-Slides-2 (1).ppt
KalaiVani395886
 
PPT
Py-Slides-2.ppt
TejaValmiki
 
PPT
Py-Slides-2.ppt
AllanGuevarra1
 
PPT
hlukj6;lukm,t.mnjhgjukryopkiu;lyk y2.ppt
PraveenaFppt
 
“Python” or “CPython” is written in C/C+
Mukeshpanigrahy1
 
introduction to python in english presentation file
RujanTimsina1
 
Chaptfffffuuer05.PPT
sdvdsvsdvsvds
 
ESIT135 Problem Solving Using Python Notes of Unit-1 and Unit-2
prasadmutkule1
 
if else python.pdf
Gshs6
 
FLOWOFCONTROL-IF..ELSE PYTHON
vikram mahendra
 
python operators.ppt
ErnieAcuna
 
PythonCourse_03_Conditionals.ppt Python introduction turorial for beginner.
sakchaisengsui
 
Introduction-to-Conditional-Statements-in-Python.pptx
sonybabu
 
23CSC101T PSPP python programming - UNIT 3.pdf
RajeshThanikachalam
 
23CSC101T PSPP python program - UNIT 3.pdf
RajeshThanikachalam
 
Chapter 9 Conditional and Iterative Statements.pptx
XhelalSpahiu
 
Brixton Library Technology Initiative Week1 Recap
Basil Bibi
 
PYTHON BASICS CODING LANGUAGE GO TO.pptx
MohammedShoaib663271
 
Baabtra.com little coder chapter - 5
baabtra.com - No. 1 supplier of quality freshers
 
Py-Slides-2 (1).ppt
KalaiVani395886
 
Py-Slides-2.ppt
TejaValmiki
 
Py-Slides-2.ppt
AllanGuevarra1
 
hlukj6;lukm,t.mnjhgjukryopkiu;lyk y2.ppt
PraveenaFppt
 
Ad

More from Shivam Mitra (16)

PPTX
Preparing for SRE Interviews
Shivam Mitra
 
PPTX
PART 9 - Python Tutorial | While Loop In Python With Examples
Shivam Mitra
 
PPTX
PART 8 - Python Tutorial | User Input In Python With Examples
Shivam Mitra
 
PPTX
PART 6 - Python Tutorial | Tuples In Python With Examples
Shivam Mitra
 
PPTX
PART 0 - Python Tutorial | Why should you learn python
Shivam Mitra
 
PPTX
Memory management in operating system | Paging | Virtual memory
Shivam Mitra
 
PPTX
Process Synchronization in operating system | mutex | semaphore | race condition
Shivam Mitra
 
PPTX
Process Scheduling Algorithms | Interviews | Operating system
Shivam Mitra
 
PPTX
Threads in Operating System | Multithreading | Interprocess Communication
Shivam Mitra
 
PPTX
Process management in operating system | process states | PCB | FORK() | Zomb...
Shivam Mitra
 
PPTX
Introduction to operating system, system calls and interrupts
Shivam Mitra
 
PPTX
What is Internet and How it Works
Shivam Mitra
 
PPTX
OSI Model Layers and Internet Protocol Stack
Shivam Mitra
 
PPTX
Basics of Stock Market
Shivam Mitra
 
PPTX
Assets vs liability
Shivam Mitra
 
PPTX
Pycricbuzz - a python library to fetch live cricket scores
Shivam Mitra
 
Preparing for SRE Interviews
Shivam Mitra
 
PART 9 - Python Tutorial | While Loop In Python With Examples
Shivam Mitra
 
PART 8 - Python Tutorial | User Input In Python With Examples
Shivam Mitra
 
PART 6 - Python Tutorial | Tuples In Python With Examples
Shivam Mitra
 
PART 0 - Python Tutorial | Why should you learn python
Shivam Mitra
 
Memory management in operating system | Paging | Virtual memory
Shivam Mitra
 
Process Synchronization in operating system | mutex | semaphore | race condition
Shivam Mitra
 
Process Scheduling Algorithms | Interviews | Operating system
Shivam Mitra
 
Threads in Operating System | Multithreading | Interprocess Communication
Shivam Mitra
 
Process management in operating system | process states | PCB | FORK() | Zomb...
Shivam Mitra
 
Introduction to operating system, system calls and interrupts
Shivam Mitra
 
What is Internet and How it Works
Shivam Mitra
 
OSI Model Layers and Internet Protocol Stack
Shivam Mitra
 
Basics of Stock Market
Shivam Mitra
 
Assets vs liability
Shivam Mitra
 
Pycricbuzz - a python library to fetch live cricket scores
Shivam Mitra
 
Ad

Recently uploaded (20)

PPTX
CATEGORIES OF NURSING PERSONNEL: HOSPITAL & COLLEGE
PRADEEP ABOTHU
 
PPTX
Controller Request and Response in Odoo18
Celine George
 
PPT
Talk on Critical Theory, Part One, Philosophy of Social Sciences
Soraj Hongladarom
 
PPTX
How to Create Odoo JS Dialog_Popup in Odoo 18
Celine George
 
PDF
0725.WHITEPAPER-UNIQUEWAYSOFPROTOTYPINGANDUXNOW.pdf
Thomas GIRARD, MA, CDP
 
PPTX
QUARTER 1 WEEK 2 PLOT, POV AND CONFLICTS
KynaParas
 
PPTX
PPT-Q1-WEEK-3-SCIENCE-ERevised Matatag Grade 3.pptx
reijhongidayawan02
 
PPTX
PPT-Q1-WK-3-ENGLISH Revised Matatag Grade 3.pptx
reijhongidayawan02
 
PDF
Exploring the Different Types of Experimental Research
Thelma Villaflores
 
PDF
QNL June Edition hosted by Pragya the official Quiz Club of the University of...
Pragya - UEM Kolkata Quiz Club
 
PDF
The Constitution Review Committee (CRC) has released an updated schedule for ...
nservice241
 
PPTX
Neurodivergent Friendly Schools - Slides from training session
Pooky Knightsmith
 
PPTX
Cultivation practice of Litchi in Nepal.pptx
UmeshTimilsina1
 
PPTX
How to Convert an Opportunity into a Quotation in Odoo 18 CRM
Celine George
 
PPTX
HUMAN RESOURCE MANAGEMENT: RECRUITMENT, SELECTION, PLACEMENT, DEPLOYMENT, TRA...
PRADEEP ABOTHU
 
PDF
The Different Types of Non-Experimental Research
Thelma Villaflores
 
PPT
Talk on Critical Theory, Part II, Philosophy of Social Sciences
Soraj Hongladarom
 
PPTX
Universal immunization Programme (UIP).pptx
Vishal Chanalia
 
PDF
Biological Bilingual Glossary Hindi and English Medium
World of Wisdom
 
PPTX
Stereochemistry-Optical Isomerism in organic compoundsptx
Tarannum Nadaf-Mansuri
 
CATEGORIES OF NURSING PERSONNEL: HOSPITAL & COLLEGE
PRADEEP ABOTHU
 
Controller Request and Response in Odoo18
Celine George
 
Talk on Critical Theory, Part One, Philosophy of Social Sciences
Soraj Hongladarom
 
How to Create Odoo JS Dialog_Popup in Odoo 18
Celine George
 
0725.WHITEPAPER-UNIQUEWAYSOFPROTOTYPINGANDUXNOW.pdf
Thomas GIRARD, MA, CDP
 
QUARTER 1 WEEK 2 PLOT, POV AND CONFLICTS
KynaParas
 
PPT-Q1-WEEK-3-SCIENCE-ERevised Matatag Grade 3.pptx
reijhongidayawan02
 
PPT-Q1-WK-3-ENGLISH Revised Matatag Grade 3.pptx
reijhongidayawan02
 
Exploring the Different Types of Experimental Research
Thelma Villaflores
 
QNL June Edition hosted by Pragya the official Quiz Club of the University of...
Pragya - UEM Kolkata Quiz Club
 
The Constitution Review Committee (CRC) has released an updated schedule for ...
nservice241
 
Neurodivergent Friendly Schools - Slides from training session
Pooky Knightsmith
 
Cultivation practice of Litchi in Nepal.pptx
UmeshTimilsina1
 
How to Convert an Opportunity into a Quotation in Odoo 18 CRM
Celine George
 
HUMAN RESOURCE MANAGEMENT: RECRUITMENT, SELECTION, PLACEMENT, DEPLOYMENT, TRA...
PRADEEP ABOTHU
 
The Different Types of Non-Experimental Research
Thelma Villaflores
 
Talk on Critical Theory, Part II, Philosophy of Social Sciences
Soraj Hongladarom
 
Universal immunization Programme (UIP).pptx
Vishal Chanalia
 
Biological Bilingual Glossary Hindi and English Medium
World of Wisdom
 
Stereochemistry-Optical Isomerism in organic compoundsptx
Tarannum Nadaf-Mansuri
 

PART 4 - Python Tutorial | If Else In Python With Examples