I have a code like this:
if (X or Y) == ("Cat" or "Dog" or "Fish" or "Bird"):
print X, Y
It is only working if X == "Cat". Does anyone know my mistake here?
|
I have a code like this:
It is only working if
| |||
|
feedback
|
|
I think you want logic like this:
In your code the expression ("Cat" or "Dog" or "Fish" or "Bird") is treated as a logical expression which I'm sure you don't want. As it happens this expression evaluates to "Cat" which explains your observed behaviour.
These are logical operations on strings. Non-empty strings are regarded as True values. Empty strings are regarded as False. Python's logical operators return values of the same type as the operands (assuming both operands are the same type). Short-circuit evaluation explains the behaviour for In any case, it makes very little sense to perform logical operations on strings! | |||||
|
feedback
|
|
The The most concise way to get the logic you are looking for is
| |||
|
feedback
|
|
What happens is you are working out What you want is:
| |||
|
feedback
|
|
Your problem is in the way Python evaluates So
| ||||
|
feedback
|