Boolean If:

3.5 & 3.6 Boolean Expressions & Conditionals

Relational Operators

  • A boolean value is either true or false
  • Typically yes or no questions like “do I have a dog?”
  • So when you write an expression to evaluate, you need to use different types of relational operators determining on the questions that we’re trying to ask
    • Ex: when trying to test to see whether or not two values or two variables are equal, then you use the equal sign to check whether or not two values or two variables contain the same value
      • a = b [equal to] numStudents = 30
      • This checks whether the value is also equal to 30
  • You can also use the not equal sign to evaluate whether or not two values are not equal to each other
    • a ≠ b [not equal to] count ≠ 10
  • We can also use the greater than or less than symbol to check whether or not something is greater than or less than then the other
    • a > b [greater than] grade > 70
  • ou can also use the greater/less than or equal to
    • a ≥ b [greater than or equal to] numPets ≥ 0
num1 = 5  
num2 = 7  

are_equal = num1 == num2

print(are_equal)  # This will print False in this example
False
num1 = 5  
num2 = 7  

are_not_equal = num1 != num2

print(are_not_equal)  # This will print True in this example
True
num1 = 5  
num2 = 7  

is_less_than = num1 < num2

print(is_less_than)  # This will print True in this example
True
num1 = 5  
num2 = 7  

is_greater_than = num1 > num2

print(is_greater_than)  # This will print False in this example
False

Popcorn hack

x= 30
y= 50
y= y>x
print(y)
True

Logical Operators

  • NOT condition: flips what is currently stored in the variable without impacting the variable/condition itself
  • AND condition: checks both conditions to produce one single Boolean true or false
  • OR condition: checks whether or not one of the conditions is true or false
  • These logical operators can be used with boolean expressions to produce a single Boolean value
# not condition
isRaining = False
result = not isRaining
print(result)
True

popcorn

x = True
y = not x
print(y)
False
# and conditions
grade = 85
result = grade > 70 and grade < 100
print(result)
grade = 59
result = grade > 70 and grade < 100
print(result)
True
False

Popcorn

grade =40
result = grade > 0 and grade < 50
print(result)
True
# or conditions
score = 175
highScore = 150
lives = 2
result = (score > highScore) or (lives > 3)
print(result)
score = 175
highScore = 150
lives = 2
result = (score < highScore) or (lives > 3)
print(result)
True
False

Popcorn Hack

  • Create a code segment with an OR operator that is True. With the same score, change the conditions and create another expression that prints False instead of True.
Score = 50

x = Score > 50  or Score == 50

print (x)

y = Score < 40 or score == 40

print (y)
True
False

Relational & Logical Operators

  • Boolean values are either true or false
  • relational operators: =,≠, >, <, ≥, and ≤
# call back to relational operators
a = b
a  b
a > b
a < b
a  b
a  b
  File "/tmp/ipykernel_5087/2310827571.py", line 3
    a ≠ b
      ^
SyntaxError: invalid character '≠' (U+2260)

These are used to test the relationship between two variables, expressions, or values. A comparison between a relational operator evaluates to a Boolean value.

# call back to logical operators
result = not isRaining # not condition

result = (score > highScore) or (lives > 3) # or condition

result = grade > 70 and grade < 100 # and condition

Different Expressions, Same Results

  • age ≥ 16
  • age > 16 or age = 16
  • NOT age < 16

Example

num = 7
isEven = num % 2 == 0
range = (num > 5) and (not num > 10)
display (isEven or range)

True
# practice
name = "Hannah"
age = 17
display ((not (name == "Hannah")) or (age < 20))
True

Popcorn Hack

Create a Boolean expression using your favHobby as a variable and the number of classes you are taking as the second variable.

  • Must have:
  • favHobby and number of classes –> 2 variables
  • display expression; NOT and OR logical operators
  • one false expression and one true expression = overall true
# start with
favHobby = "Video Games"
numClasses =  5
display( not favHobby == "Video Games" or numClasses < 10)
True

learning objective: write algorithms that uses selection without using a programming language

vocab

selection: determines which part of an algorithm are executed based on condition being true or false algorithm: a finite set of instructions that accomplish a specific task

ex determine if a number is in range

  • get number from user
  • is number greater than - and less than 10
  • if yes display number
  • if no display goodbye

participation hack:

give me different ways you would determine if a kid needs to go to tutoring

  • have low grades
  • doesn’t understand the topic

writing conditionals

format

if (condition) :

  • if the condition evaluates to true then the block of statements occurs
  • if not then no action is taken or if (condition) : else:
  • if the condition is true then first block is executed if false then the second black or else statement is executed

Example – multiple of 3?

number = 9
if number % 3 == 0 :
    print ("multiple of 3")
else:
    print ("not multiple of 3")
multiple of 3

Popcorn Hack

calculate the sum of two numbers -> if the sum is greater than 100 display 100, otherwise display the sum.

help you guys get started: num 1 = num 2 = sum = num 1 + num 2 if (): else :

x = 40
y = 30

if x + y > 100:
    print("100")
else:
    sum = x+y
    print(str(sum))

70

We can do conditional statements using if blocks that just choose or do one particular outcome based off of a condition

Or you can do if-else blocks to choose from two different outcomes

IF (condition) { } ELSE { } The else only activates if the “if condition” is FALSE

Example 1: if-elif-else block


y = 7
if y > 10:
    print("y is greater than 10")
elif y == 10:
    print("y is equal to 10")
else:
    print("y is less than 10")

y is less than 10
  • conditional statements, or “if-statements,” affect the sequential flow of control by executing different statements based on the value of a boolean expression
  • The if/else statement executes a block of code if a specified condition is true. If the condition is false, another block of code can be executed.
  • we use an if-elif-else block to check the value of the variable y. It first checks if y is greater than 10, then if it’s equal to 10, and finally, if neither of these conditions is met, it executes the code inside the else block.

Homework:

Hack 1

Write two Boolean expressions to check if the average grades of student1, student2, and student3 is at least 85. Write one expression that is false and one that is true.

Hack 2

You can’t go outside if the temperature is less than 20 AND the weather is stormy. Write the Boolean expression for the scenario. Screenshot your work and put it on a Google document. Share the link with Ellie Rozenkrants on Slack by Oct 12 11:59 PM.

Hack 1

Stu1 = 90
Stu2 = 30
Stu3 = 80
Sum = Stu1 +Stu2 +Stu3
Avg = Sum/3
display(Avg > 85 or Avg == 85)

true = Avg > 50
print(true)
false = Avg > 100
print(false)
False


True
False

Hack 2

import random
x = random.randint(0, 100)	
print(str(x))
y = random.randint(0,1)
print(str(y))
if y == 0:
    y= "stormy"
else:
    y= "not stormy"


print( "can you go out: " + str(not display( x < 20 and  y == "stormy")))
43
0



False


can you go out: True