What is the explanation for this behavior in Python?
a = 10
b = 20
a and b # 20
b and a # 10
a and b
evaluates to 20, while b and a
evaluates to 10. Are positive ints equivalent to True? Why does it evaluate to the second value? Because it is second?
The documentation explains this quite well:
The expression
x and y
first evaluatesx
; ifx
is false, its value is returned; otherwise,y
is evaluated and the resulting value is returned.
And similarly for or
which will probably be the next question on your lips.
The expression
x or y
first evaluatesx
; ifx
is true, its value is returned; otherwise,y
is evaluated and the resulting value is returned.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With