Logical Operators
Given what we know so far, we know the result of comparing two numbers or string lengths - it's either True or False. We know that Boolean values and Boolean expressions (code that needs to be evaluated to True or False) can use logical operations or/and/not. For other data types we can get Boolean expressions with comparative operators.
Exercises
Work out whether the following would be True or False:
10 < 17 or (not False and 7 == 7.0)
'Justin' == "Justin" 3.
not (10 == 1 or 1000 == 1000)
"bunji" == "bunji" or "machel" == "soca king"
Last updated