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
Pointers in c
Mohd Arif
 
PPT
Recursion in c
Saket Pathak
 
PDF
Constants Variables Datatypes by Mrs. Sowmya Jyothi
SowmyaJyothi3
 
PPTX
Python Tutorial Part 1
Haitham El-Ghareeb
 
PPT
3 data-types-in-c
teach4uin
 
PPTX
Best Python IDEs
Benishchoco
 
PPTX
Basics of python
SurjeetSinghSurjeetS
 
PDF
Let’s Learn Python An introduction to Python
Jaganadh Gopinadhan
 
PPTX
Decision Making & Loops
Akhil Kaushik
 
PPTX
Loops in Python
AbhayDhupar
 
PDF
C Pointers
omukhtar
 
PPTX
Python - An Introduction
Swarit Wadhe
 
PPTX
C function
thirumalaikumar3
 
PPTX
Loop control structure
narmadhakin
 
PPTX
What is token c programming
Rumman Ansari
 
PPT
Late and Early binding in c++
FazalRehman79
 
PPTX
Tokens in C++
Mahender Boda
 
PPTX
Python for loop
Aishwarya Deshmukh
 
PPTX
sSCOPE RESOLUTION OPERATOR.pptx
Nidhi Mehra
 
Pointers in c
Mohd Arif
 
Recursion in c
Saket Pathak
 
Constants Variables Datatypes by Mrs. Sowmya Jyothi
SowmyaJyothi3
 
Python Tutorial Part 1
Haitham El-Ghareeb
 
3 data-types-in-c
teach4uin
 
Best Python IDEs
Benishchoco
 
Basics of python
SurjeetSinghSurjeetS
 
Let’s Learn Python An introduction to Python
Jaganadh Gopinadhan
 
Decision Making & Loops
Akhil Kaushik
 
Loops in Python
AbhayDhupar
 
C Pointers
omukhtar
 
Python - An Introduction
Swarit Wadhe
 
C function
thirumalaikumar3
 
Loop control structure
narmadhakin
 
What is token c programming
Rumman Ansari
 
Late and Early binding in c++
FazalRehman79
 
Tokens in C++
Mahender Boda
 
Python for loop
Aishwarya Deshmukh
 
sSCOPE RESOLUTION OPERATOR.pptx
Nidhi Mehra
 

More from Shivam Mitra (15)

PPTX
Preparing for SRE Interviews
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 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
How to Set Up Tags in Odoo 18 - Odoo Slides
Celine George
 
PPTX
Identifying elements in the story. Arrange the events in the story
geraldineamahido2
 
PDF
DIGESTION OF CARBOHYDRATES,PROTEINS,LIPIDS
raviralanaresh2
 
PPTX
PATIENT ASSIGNMENTS AND NURSING CARE RESPONSIBILITIES.pptx
PRADEEP ABOTHU
 
PPTX
How to Handle Salesperson Commision in Odoo 18 Sales
Celine George
 
PDF
Stokey: A Jewish Village by Rachel Kolsky
History of Stoke Newington
 
PDF
Exploring the Different Types of Experimental Research
Thelma Villaflores
 
PPTX
PPT-Q1-WEEK-3-SCIENCE-ERevised Matatag Grade 3.pptx
reijhongidayawan02
 
PPTX
QUARTER 1 WEEK 2 PLOT, POV AND CONFLICTS
KynaParas
 
PPTX
Unit 2 COMMERCIAL BANKING, Corporate banking.pptx
AnubalaSuresh1
 
PDF
Knee Extensor Mechanism Injuries - Orthopedic Radiologic Imaging
Sean M. Fox
 
PPT
Talk on Critical Theory, Part II, Philosophy of Social Sciences
Soraj Hongladarom
 
PPTX
Growth and development and milestones, factors
BHUVANESHWARI BADIGER
 
PDF
ARAL_Orientation_Day-2-Sessions_ARAL-Readung ARAL-Mathematics ARAL-Sciencev2.pdf
JoelVilloso1
 
PDF
Aprendendo Arquitetura Framework Salesforce - Dia 03
Mauricio Alexandre Silva
 
PPTX
How to Convert an Opportunity into a Quotation in Odoo 18 CRM
Celine George
 
PDF
QNL June Edition hosted by Pragya the official Quiz Club of the University of...
Pragya - UEM Kolkata Quiz Club
 
PDF
The Different Types of Non-Experimental Research
Thelma Villaflores
 
PDF
ARAL-Orientation_Morning-Session_Day-11.pdf
JoelVilloso1
 
PPTX
grade 5 lesson matatag ENGLISH 5_Q1_PPT_WEEK4.pptx
SireQuinn
 
How to Set Up Tags in Odoo 18 - Odoo Slides
Celine George
 
Identifying elements in the story. Arrange the events in the story
geraldineamahido2
 
DIGESTION OF CARBOHYDRATES,PROTEINS,LIPIDS
raviralanaresh2
 
PATIENT ASSIGNMENTS AND NURSING CARE RESPONSIBILITIES.pptx
PRADEEP ABOTHU
 
How to Handle Salesperson Commision in Odoo 18 Sales
Celine George
 
Stokey: A Jewish Village by Rachel Kolsky
History of Stoke Newington
 
Exploring the Different Types of Experimental Research
Thelma Villaflores
 
PPT-Q1-WEEK-3-SCIENCE-ERevised Matatag Grade 3.pptx
reijhongidayawan02
 
QUARTER 1 WEEK 2 PLOT, POV AND CONFLICTS
KynaParas
 
Unit 2 COMMERCIAL BANKING, Corporate banking.pptx
AnubalaSuresh1
 
Knee Extensor Mechanism Injuries - Orthopedic Radiologic Imaging
Sean M. Fox
 
Talk on Critical Theory, Part II, Philosophy of Social Sciences
Soraj Hongladarom
 
Growth and development and milestones, factors
BHUVANESHWARI BADIGER
 
ARAL_Orientation_Day-2-Sessions_ARAL-Readung ARAL-Mathematics ARAL-Sciencev2.pdf
JoelVilloso1
 
Aprendendo Arquitetura Framework Salesforce - Dia 03
Mauricio Alexandre Silva
 
How to Convert an Opportunity into a Quotation in Odoo 18 CRM
Celine George
 
QNL June Edition hosted by Pragya the official Quiz Club of the University of...
Pragya - UEM Kolkata Quiz Club
 
The Different Types of Non-Experimental Research
Thelma Villaflores
 
ARAL-Orientation_Morning-Session_Day-11.pdf
JoelVilloso1
 
grade 5 lesson matatag ENGLISH 5_Q1_PPT_WEEK4.pptx
SireQuinn
 
Ad

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