Why is the output different for the following logical operations that I tried in python?
-1 or 1
1 or -1
First returns -1 and second returns 1
|
Why is the output different for the following logical operations that I tried in python?
First returns |
||||
|
|
|
|
|||
|
|
|
Read the documentation:
|
|||
|
|
|
Both first parts |
|||
|
|
|
The
For example:
|
|||
|
|
|
I think the OP expects the return value of 'or' to be either True or False (as would be the case for boolean operators in some other languages.) Python, like Perl, simply returns the first "true" value (where "true" means nonzero for numbers, non-empty for strings, not None, etc.) Similarly, 'and' returns the last value if and only if both are "true". He would probably be even more surprised by the result of something like
Perl programmers often use this construct idiomatically (as in (see man) |
|||
|
|