8d1e8aaa8f
Signed-off-by: David Rotermund <54365609+davrot@users.noreply.github.com>
2.6 KiB
2.6 KiB
Python -- Truth Value Testing
{:.no_toc}
* TOC {:toc}Questions to David Rotermund
Common mistake to avoid
For True, False, None we use is and is not for comparisons. They are objects and not values thus we need to use is and is not.
Correct
if a: # "a is True" is shortend to "a" due to the official Python style guidelines
pass
if a is not True:
pass
if a is False:
pass
if a is not False:
pass
if a is None:
pass
if a is not None:
pass
Wrong
if a == True:
pass
if a == False:
pass
if a != False:
pass
if a != None:
pass
Boolean Operations - and, or, not
"These are the Boolean operations, ordered by ascending priority:"
x or y | if x is false, then y, else x | (1) |
x or y | if x is false, then x, else y | (2) |
not x | if x is false, then True, else False | (3) |
- This is a short-circuit operator, so it only evaluates the second argument if the first one is false.
- This is a short-circuit operator, so it only evaluates the second argument if the first one is true.
- not has a lower priority than non-Boolean operators, so not a == b is interpreted as not (a == b), and a == not b is a syntax error.
Comparisons
"There are eight comparison operations in Python. They all have the same priority (which is higher than that of the Boolean operations). Comparisons can be chained arbitrarily; for example, x < y <= z is equivalent to x < y and y <= z, except that y is evaluated only once (but in both cases z is not evaluated at all when x < y is found to be false)."
"This table summarizes the comparison operations:"
< | strictly less than | uses method: __lt__() |
<= | less than or equal | uses method: __le__() |
> | strictly greater than | uses method: __gt__() |
>= | greater than or equal | uses method: __ge__() |
== | equal | uses method: __eq__() |
!= | not equal | |
is | object identity | |
is not | negated object identity |