chapter 3 decision structures and boolean logic

21
Chapter 3 Decision Structures and Boolean Logic Hong Sun COSC 1436 Spring 2017 Feb 6, 2017

Upload: others

Post on 18-Dec-2021

4 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Chapter 3 Decision Structures and Boolean Logic

Chapter 3 Decision Structures and Boolean

Logic

Hong Sun

COSC 1436 Spring 2017

Feb 6, 2017

Page 2: Chapter 3 Decision Structures and Boolean Logic

The If Statement

• The if statement – The if statement is used to create a decision structure, which allows a program to have more than one path of execution. The if statement causes one or more statements to execute only when a Boolean expression is true. – Control structure : a logical design that controls the order in which a set of statements execute. – Sequence structure is a set of statements that execute in the order that they appear. it is simplest control structure. – Decision structure: one that can execute a set of statements only under certain circumstances. It also known as selection structures.

Page 3: Chapter 3 Decision Structures and Boolean Logic

Decision Structure single alternative decision structure

Page 4: Chapter 3 Decision Structures and Boolean Logic

Decision Structure dual alternative decision structure

Page 5: Chapter 3 Decision Structures and Boolean Logic

Boolean Expressions and Relational Operators

• Boolean Expression is formed with a relation operator. A relation operator determines whether a specific relationship exists between two values.

• Relational Operators:

Operator Meaning

> Greater than

< Less than

>= Greater than or equal to

<= Less than or equal to

== Equal to

!= Not equal to

Page 6: Chapter 3 Decision Structures and Boolean Logic

Boolean Expressions and Relational Operators

Expression Meaning

X > Y Is X Greater than Y

X < Y Is X Less than Y

X >= Y Is X Greater than or equal to Y

X <= Y Is X Less than or equal to Y

X == Y Is X Equal to Y

X != Y Is X Not equal to Y

Page 7: Chapter 3 Decision Structures and Boolean Logic

If – else statement

• The if – else Statement

• An if-else statement will execute one block of statement if its condition is true, or another block if its condition is false

• if condition: statement

statement

etc

• else: statement

statement

etc

Page 8: Chapter 3 Decision Structures and Boolean Logic

Comparing strings

• Python allows you to compare strings. This allows you to create decision structures that test the value of a string. o ASCII (the American Standard Code for Information

Interchange) is a commonly used coding system (Appendix C)

o The uppercase characters A through Z are represented by the numbers 65 through 90

o The lowcase characters a through z are represented by the numbers 97 through 122

o When the digits 0 through 9 are stored in memory as characters, they are represented by the numbers 48 through 57 (for example, the string ‘abc123’ would be stored in memory as codes 97,98,99,49,50,51)

o A blank space is represented by the number 32

Page 9: Chapter 3 Decision Structures and Boolean Logic

String comparisons example

name1 = input(‘Enter a name:’) name2 = input(‘Enter another name: ‘) #Display the names in alphabetical order print(‘Here are the names, listed alphabetically’) if name1 < name2 : print(name1) print(name2) else: print(name2) print(name1)

Page 10: Chapter 3 Decision Structures and Boolean Logic

Nested Decision Structure and the if elif-else Statement

Page 11: Chapter 3 Decision Structures and Boolean Logic
Page 12: Chapter 3 Decision Structures and Boolean Logic

The if-elif-else statement

If condition_1: statement statement etc

Elif condition_2: statement statement etc

else statement statement etc

Page 13: Chapter 3 Decision Structures and Boolean Logic

If-elif-else example

If score >= A_score:

print(‘Your grade is A.’)

elif score >= B_score:

print(‘Your grade is B’)

elif score >= C_score:

print(‘Your grade is C’)

elif score >= C_score:

print(‘Your grade is D’)

else

print(‘Your grade is F’)

Page 14: Chapter 3 Decision Structures and Boolean Logic

Logical Operators

• The logical and operator and the logical or operator allow you to connect multiple Boolean expressions to create a compound expression. The logical not operator reverses the truth of a Boolean expression

• Logical operators

and Both subexpressions must be true for the compound expression to be true

or One or both subexpressions must be true for the compound expression to be true

not Used to reverse the logical state of its operand.

Page 15: Chapter 3 Decision Structures and Boolean Logic

Logical Operators Example • and

if 1 < 2 and 4 > 2:

print("condition met")

if 1 > 2 and 4 < 10:

print("condition not met")

• Truth table for the and operator

Expression Value of the Expression

False and false false

False and true false

Ture and false false

True and true true

Page 16: Chapter 3 Decision Structures and Boolean Logic

Logical Operators Example • or

if 4 < 10 or 1 < 2:

print("condition met")

Expression Value of the Expression

False and false false

False and true true

Ture and false true

True and true true

Page 17: Chapter 3 Decision Structures and Boolean Logic

Logical Operators Example • not

if not (temperature>100) :

print(“this is not very hot")

else:

print(“this is very hot")

Expression Value of the Expression

Not true false

Not false true

Page 18: Chapter 3 Decision Structures and Boolean Logic

Boolean variable

• Boolean variable

– A Boolean variable can reference one of two values: True or False

Boolean variables are commonly used as flags, which indicate whether specific conditions exist Example:

hungry = True

sleepy = False

Page 19: Chapter 3 Decision Structures and Boolean Logic

Chapter 3 programming example

15. Time Calculation Write a program that asks the user to enter a number of seconds and works as follows: o There are 60 secs in a minus. If the number of seconds

entered by user is greater than or equal to 60, the program should display the number of minutes in that many seconds.

o There are 3,600 seconds in an hour. If the number of seconds entered by user is greater than or equal to 3,600, the program should display the number of hours in that many seconds.

o There are 86,400 seconds in a day. If the number of seconds entered by user is greater than or equal to 86,400, the program should display the number of days in that many seconds.

Page 20: Chapter 3 Decision Structures and Boolean Logic

Chapter 3 programming example

15. Time Calculation seconds=int(input("Please enter a number of seconds: ")) if seconds < 60: print("the number of seconds is",seconds) elif seconds>=60 and seconds<3600: print("the number of minutes is",format(seconds/60,'0.2f')) elif seconds>=3600 and seconds<86400: print("the number of hours is",format(seconds/3600,'0.2f')) else: if seconds>=86400: print("the number of days is",format(seconds/86400,'0.2f'))

Page 21: Chapter 3 Decision Structures and Boolean Logic

Chapter 3 lab and assignments

• Lab: programming exercises 1,2,3,9,10

• Assignments: Programming Exercises 11, 12, 13,14 (p117-118)

Due on 2/13/2017