You are on page 1of 14

INTRODUCTION TO COMPUTERS

AND PROGRAMMING
Meeting 6
Dr. Ahmed Ezzat Labib
MULTIPLE NESTED DECISION STRUCTURES
– EXAMPLE

• Dr. Islam teaches a Statistics class and uses the following 10-point grading scale for
all of his exams:
if score >= 90:
print('Your grade is A.')
else:
if score >= 80:
print('Your grade is B.')
else:
if score >= 70:
print('Your grade is C.')
else:
if score >= 60:
print('Your grade is D.')
else:
print('Your grade is F.')
THE IF-ELIF-ELSE STATEMENT
if condition_1:
statement
statement
etc.
elif condition_2:
statement
statement
etc.

Insert as many elif clauses as necessary . . .


if score >= 90:
print('Your grade is A.')
elif score >= 80:
print('Your grade is B.')
elif score >= 70:
print('Your grade is C.')
elif score >= 60:
print('Your grade is D.')
else:
print('Your grade is F.')
LOGICAL OPERATORS
Operator Meaning

And The and operator connects two Boolean expressions into one compound
expression. Both subexpressions must be true for the compound expression to be
true.
Or The or operator connects two Boolean expressions into one compound expression.
One or both subexpressions must be true for the compound expression to be true.
It is only necessary for one of the subexpressions to be true, and it does not matter
which.
not The not operator is a unary operator, meaning it works with only one operand. The
operand must be a Boolean expression. The not operator reverses the truth of its
operand. If it is applied to an expression that is true, the operator returns false. If it
is applied to an expression that is false, the operator returns true.
LOGICAL OPERATORS

and Expression Result or Expression Result not Expression Result

true and true true true or true true not true false

true and false false true or false true not false true

false and true false false or true true

false and false false false or false false


A BANK CUSTOMER QUALIFIES FOR A LOAN
EXAMPLE
min_salary = 30000.0 # The minimum annual salary
min_years = 2 # The minimum years on the job
salary = float(input('Enter your annual salary:'))
years_on_job = int(input('Enter the number of' +
'years employed:'))

if salary >= min_salary and years_on_job >= min_years:


print('You qualify for the loan.')
else:
print('You do not qualify for this loan.')
CHECKING NUMERIC RANGES WITH LOGICAL
OPERATORS
• 20 ≤ 𝑥 ≤ 40
if x >= 20 and x <= 40:
print('The value is in the acceptable range.')

• x is outside the range of 20 through 40


if x < 20 or x > 40:
print('The value is outside the acceptable range.')
THINK ABOUT THAT ???

if x < 20 and x > 40:


print('The value is outside the acceptable range.')
BOOLEAN VARIABLES

hungry = True
sleepy = False

• Boolean variables are most commonly used as flags.

• A flag is a variable that signals when some condition exists in the program.
FLAG EXAMPLE
if sales >= 50000.0:
sales_quota_met = True
else:
sales_quota_met = False

if sales_quota_met:
print('You have met your sales quota!')
PRACTICE YOUR-SELF

Please Solve all Questions of Chapter 3.


Ask Your Tutor to Help You.
To Be Cont….

You might also like