2 min read•june 18, 2024
Minna Chow
Milo Chang
Minna Chow
Milo Chang
Boolean variables can only represent the values true or false. Relational operators are used with Boolean values to test the relationship between two values.
Here are the relational operators you'll see on the test:
Take this Python example below:
y = 5
x = 55
print (x > y)
The computer will print the word "True" because 55 is greater than 5.
Boolean values are also used with logical operators known as NOT, AND and OR. These can be used to combine multiple conditions, whereas relational operators can only evaluate one condition.
Logical operators evaluate either Boolean expressions or a single Boolean value.
The NOT operator is used to reverse what the condition evaluates to. If a condition is true, the operator will evaluate to false, and vice versa.
y = 5
x = 55
print (not y >= 5)
In this case, the computer will print the word "False". y is equal to 5. This makes the condition *true—*it's the not operator that reverses this so the computer returns false.
Here's the NOT operator in Pseudocode:
y = 5
x = 55
print (y >= 5 and x <= 44)
The computer will print the word "False" because x is not less than or equal to 44, even though y equals 5.
Here's the AND operator in Pseudocode:
y = 5
x = 55
print (y >= 5 or x <= 44)
The computer will print the word "True" because, although the second condition isn't met, the first one is.
Here's the OR operator in Pseudocode:
<< Hide Menu
2 min read•june 18, 2024
Minna Chow
Milo Chang
Minna Chow
Milo Chang
Boolean variables can only represent the values true or false. Relational operators are used with Boolean values to test the relationship between two values.
Here are the relational operators you'll see on the test:
Take this Python example below:
y = 5
x = 55
print (x > y)
The computer will print the word "True" because 55 is greater than 5.
Boolean values are also used with logical operators known as NOT, AND and OR. These can be used to combine multiple conditions, whereas relational operators can only evaluate one condition.
Logical operators evaluate either Boolean expressions or a single Boolean value.
The NOT operator is used to reverse what the condition evaluates to. If a condition is true, the operator will evaluate to false, and vice versa.
y = 5
x = 55
print (not y >= 5)
In this case, the computer will print the word "False". y is equal to 5. This makes the condition *true—*it's the not operator that reverses this so the computer returns false.
Here's the NOT operator in Pseudocode:
y = 5
x = 55
print (y >= 5 and x <= 44)
The computer will print the word "False" because x is not less than or equal to 44, even though y equals 5.
Here's the AND operator in Pseudocode:
y = 5
x = 55
print (y >= 5 or x <= 44)
The computer will print the word "True" because, although the second condition isn't met, the first one is.
Here's the OR operator in Pseudocode:
© 2024 Fiveable Inc. All rights reserved.