Why and/or operations in python statement are behaving unexpectedly?can Python 'and' return None?Replacements...
Buying a "Used" Router
Is there any danger of my neighbor having my wife's signature?
Reduce Reflections
Can I legally make a website about boycotting a certain company?
For the Circle of Spores druid's Halo of Spores feature, is your reaction used regardless of whether the other creature succeeds on the saving throw?
Build ASCII Podiums
Cryptic cross... with words
Can a planet be tidally unlocked?
Boss asked me to sign a resignation paper without a date on it along with my new contract
Draw triangle with text in vertices/edges
Why is Bernie Sanders maximum accepted donation on actblue $5600?
Can I do anything else with aspersions other than cast them?
Multiple null checks in Java 8
bash aliases do not expand even with shopt expand_aliases
What does an unprocessed RAW file look like?
How do I add a strong "onion flavor" to the biryani (in restaurant style)?
Have the UK Conservatives lost the working majority and if so, what does this mean?
Dot product with a constant
What's the function of the word "ли" in the following contexts?
Is it Safe to Plug an Extension Cord Into a Power Strip?
Was the Soviet N1 really capable of sending 9.6 GB/s of telemetry?
What is an explicit bijection in combinatorics?
Why is Shelob considered evil?
Why can SHM equations be described in sine(s) and cosine(s)?
Why and/or operations in python statement are behaving unexpectedly?
can Python 'and' return None?Replacements for switch statement in Python?Calling an external command in PythonWhat are metaclasses in Python?Finding the index of an item given a list containing it in PythonDifference between append vs. extend list methods in PythonHow can I safely create a nested directory in Python?“is” operator behaves unexpectedly with integersDoes Python have a ternary conditional operator?How to get the current time in PythonDoes Python have a string 'contains' substring method?
I have a conceptual doubt in Python. This is the code
list1=['assistant manager', 'salesperson', 'doctor', 'production manager', 'sales manager', 'schoolteacher', 'mathematics teacher']
sub1 = "teacher"
sub2 = "sales"
ans=[]
for item in list1:
if (sub1 and sub2) in item:
ans.append(item)
Here, I expect the list to be empty as none of the items satisfy the condition if sub1 and sub2 in item:
But when I print the list I get the output#1 as this
>>> ans
['salesperson', 'sales manager'] # I expected an empty list here
Also, when I use or
instead of and
as given below
for item in list1:
if (sub1 or sub2) in item:
ans.append(item)
the output#2 I get is
>>> ans
['schoolteacher', 'mathematics teacher'] # I expected a list of words containing sub1 or sub2 as their substrings
I saw a similar looking solution here, but it does not exactly solve my problem. Both the times I get a result which I do not expect while using and
and or
. Can someone please explain why is this happening during both these operations?
python logical-operators
add a comment |
I have a conceptual doubt in Python. This is the code
list1=['assistant manager', 'salesperson', 'doctor', 'production manager', 'sales manager', 'schoolteacher', 'mathematics teacher']
sub1 = "teacher"
sub2 = "sales"
ans=[]
for item in list1:
if (sub1 and sub2) in item:
ans.append(item)
Here, I expect the list to be empty as none of the items satisfy the condition if sub1 and sub2 in item:
But when I print the list I get the output#1 as this
>>> ans
['salesperson', 'sales manager'] # I expected an empty list here
Also, when I use or
instead of and
as given below
for item in list1:
if (sub1 or sub2) in item:
ans.append(item)
the output#2 I get is
>>> ans
['schoolteacher', 'mathematics teacher'] # I expected a list of words containing sub1 or sub2 as their substrings
I saw a similar looking solution here, but it does not exactly solve my problem. Both the times I get a result which I do not expect while using and
and or
. Can someone please explain why is this happening during both these operations?
python logical-operators
(sub1 and sub2) in item
what will be the result of the expression in the brackets? That will be checked againstitem
.
– Klaus D.
5 hours ago
Change(sub1 and sub2) in item
tosub1 in item and sub2 in item
– Tom Karzes
5 hours ago
1
Possible duplicate of can Python 'and' return None?
– user5173426
4 hours ago
add a comment |
I have a conceptual doubt in Python. This is the code
list1=['assistant manager', 'salesperson', 'doctor', 'production manager', 'sales manager', 'schoolteacher', 'mathematics teacher']
sub1 = "teacher"
sub2 = "sales"
ans=[]
for item in list1:
if (sub1 and sub2) in item:
ans.append(item)
Here, I expect the list to be empty as none of the items satisfy the condition if sub1 and sub2 in item:
But when I print the list I get the output#1 as this
>>> ans
['salesperson', 'sales manager'] # I expected an empty list here
Also, when I use or
instead of and
as given below
for item in list1:
if (sub1 or sub2) in item:
ans.append(item)
the output#2 I get is
>>> ans
['schoolteacher', 'mathematics teacher'] # I expected a list of words containing sub1 or sub2 as their substrings
I saw a similar looking solution here, but it does not exactly solve my problem. Both the times I get a result which I do not expect while using and
and or
. Can someone please explain why is this happening during both these operations?
python logical-operators
I have a conceptual doubt in Python. This is the code
list1=['assistant manager', 'salesperson', 'doctor', 'production manager', 'sales manager', 'schoolteacher', 'mathematics teacher']
sub1 = "teacher"
sub2 = "sales"
ans=[]
for item in list1:
if (sub1 and sub2) in item:
ans.append(item)
Here, I expect the list to be empty as none of the items satisfy the condition if sub1 and sub2 in item:
But when I print the list I get the output#1 as this
>>> ans
['salesperson', 'sales manager'] # I expected an empty list here
Also, when I use or
instead of and
as given below
for item in list1:
if (sub1 or sub2) in item:
ans.append(item)
the output#2 I get is
>>> ans
['schoolteacher', 'mathematics teacher'] # I expected a list of words containing sub1 or sub2 as their substrings
I saw a similar looking solution here, but it does not exactly solve my problem. Both the times I get a result which I do not expect while using and
and or
. Can someone please explain why is this happening during both these operations?
python logical-operators
python logical-operators
edited 4 hours ago
satya
asked 5 hours ago
satyasatya
14012
14012
(sub1 and sub2) in item
what will be the result of the expression in the brackets? That will be checked againstitem
.
– Klaus D.
5 hours ago
Change(sub1 and sub2) in item
tosub1 in item and sub2 in item
– Tom Karzes
5 hours ago
1
Possible duplicate of can Python 'and' return None?
– user5173426
4 hours ago
add a comment |
(sub1 and sub2) in item
what will be the result of the expression in the brackets? That will be checked againstitem
.
– Klaus D.
5 hours ago
Change(sub1 and sub2) in item
tosub1 in item and sub2 in item
– Tom Karzes
5 hours ago
1
Possible duplicate of can Python 'and' return None?
– user5173426
4 hours ago
(sub1 and sub2) in item
what will be the result of the expression in the brackets? That will be checked against item
.– Klaus D.
5 hours ago
(sub1 and sub2) in item
what will be the result of the expression in the brackets? That will be checked against item
.– Klaus D.
5 hours ago
Change
(sub1 and sub2) in item
to sub1 in item and sub2 in item
– Tom Karzes
5 hours ago
Change
(sub1 and sub2) in item
to sub1 in item and sub2 in item
– Tom Karzes
5 hours ago
1
1
Possible duplicate of can Python 'and' return None?
– user5173426
4 hours ago
Possible duplicate of can Python 'and' return None?
– user5173426
4 hours ago
add a comment |
2 Answers
2
active
oldest
votes
("teacher" and "sales") in "salesmanager"
do not mean the same in Python and in English.
In English, it is synonynous to ("teacher" in "salesmanager") and ("sales" in "salesmanager")
(which Python would understand as you thought it should, and evaluate to False
).
Python on the other hand will first evaluate "teacher" and "sales"
, because it is in parentheses, and thus has higher priority. and
will return the first argument if falsy, otherwise the second argument. "teacher"
is not falsy, so "teacher" and "sales"
evaluates as "sales"
. Then, Python continues to evaluate "sales" in "salesmanager"
, and returns True
.
add a comment |
The and
and or
operators don't do what you think they do. Try breaking up your expressions:
if sub1 in item or sub2 in item:
if sub1 in item and sub2 in item:
The and
operator evaluates its left-hand operand and, if the result is truthy, returns the right-hand operand, otherwise the left-hand operand.
The or
operator evaluates its left-hand operand and, if the result is falsy, returns the right-hand operand, otherwise the left-hand operand.
So, in your first expression evaluates as follows:
(sub1 and sub2) in item
("teacher" and "sales") in item
("sales") in item
which is not what you expected.
Similarly for your second expression:
(sub1 or sub2) in item
("teacher" or "sales") in item
("teacher") in item
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54821841%2fwhy-and-or-operations-in-python-statement-are-behaving-unexpectedly%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
("teacher" and "sales") in "salesmanager"
do not mean the same in Python and in English.
In English, it is synonynous to ("teacher" in "salesmanager") and ("sales" in "salesmanager")
(which Python would understand as you thought it should, and evaluate to False
).
Python on the other hand will first evaluate "teacher" and "sales"
, because it is in parentheses, and thus has higher priority. and
will return the first argument if falsy, otherwise the second argument. "teacher"
is not falsy, so "teacher" and "sales"
evaluates as "sales"
. Then, Python continues to evaluate "sales" in "salesmanager"
, and returns True
.
add a comment |
("teacher" and "sales") in "salesmanager"
do not mean the same in Python and in English.
In English, it is synonynous to ("teacher" in "salesmanager") and ("sales" in "salesmanager")
(which Python would understand as you thought it should, and evaluate to False
).
Python on the other hand will first evaluate "teacher" and "sales"
, because it is in parentheses, and thus has higher priority. and
will return the first argument if falsy, otherwise the second argument. "teacher"
is not falsy, so "teacher" and "sales"
evaluates as "sales"
. Then, Python continues to evaluate "sales" in "salesmanager"
, and returns True
.
add a comment |
("teacher" and "sales") in "salesmanager"
do not mean the same in Python and in English.
In English, it is synonynous to ("teacher" in "salesmanager") and ("sales" in "salesmanager")
(which Python would understand as you thought it should, and evaluate to False
).
Python on the other hand will first evaluate "teacher" and "sales"
, because it is in parentheses, and thus has higher priority. and
will return the first argument if falsy, otherwise the second argument. "teacher"
is not falsy, so "teacher" and "sales"
evaluates as "sales"
. Then, Python continues to evaluate "sales" in "salesmanager"
, and returns True
.
("teacher" and "sales") in "salesmanager"
do not mean the same in Python and in English.
In English, it is synonynous to ("teacher" in "salesmanager") and ("sales" in "salesmanager")
(which Python would understand as you thought it should, and evaluate to False
).
Python on the other hand will first evaluate "teacher" and "sales"
, because it is in parentheses, and thus has higher priority. and
will return the first argument if falsy, otherwise the second argument. "teacher"
is not falsy, so "teacher" and "sales"
evaluates as "sales"
. Then, Python continues to evaluate "sales" in "salesmanager"
, and returns True
.
answered 5 hours ago
AmadanAmadan
131k13143195
131k13143195
add a comment |
add a comment |
The and
and or
operators don't do what you think they do. Try breaking up your expressions:
if sub1 in item or sub2 in item:
if sub1 in item and sub2 in item:
The and
operator evaluates its left-hand operand and, if the result is truthy, returns the right-hand operand, otherwise the left-hand operand.
The or
operator evaluates its left-hand operand and, if the result is falsy, returns the right-hand operand, otherwise the left-hand operand.
So, in your first expression evaluates as follows:
(sub1 and sub2) in item
("teacher" and "sales") in item
("sales") in item
which is not what you expected.
Similarly for your second expression:
(sub1 or sub2) in item
("teacher" or "sales") in item
("teacher") in item
add a comment |
The and
and or
operators don't do what you think they do. Try breaking up your expressions:
if sub1 in item or sub2 in item:
if sub1 in item and sub2 in item:
The and
operator evaluates its left-hand operand and, if the result is truthy, returns the right-hand operand, otherwise the left-hand operand.
The or
operator evaluates its left-hand operand and, if the result is falsy, returns the right-hand operand, otherwise the left-hand operand.
So, in your first expression evaluates as follows:
(sub1 and sub2) in item
("teacher" and "sales") in item
("sales") in item
which is not what you expected.
Similarly for your second expression:
(sub1 or sub2) in item
("teacher" or "sales") in item
("teacher") in item
add a comment |
The and
and or
operators don't do what you think they do. Try breaking up your expressions:
if sub1 in item or sub2 in item:
if sub1 in item and sub2 in item:
The and
operator evaluates its left-hand operand and, if the result is truthy, returns the right-hand operand, otherwise the left-hand operand.
The or
operator evaluates its left-hand operand and, if the result is falsy, returns the right-hand operand, otherwise the left-hand operand.
So, in your first expression evaluates as follows:
(sub1 and sub2) in item
("teacher" and "sales") in item
("sales") in item
which is not what you expected.
Similarly for your second expression:
(sub1 or sub2) in item
("teacher" or "sales") in item
("teacher") in item
The and
and or
operators don't do what you think they do. Try breaking up your expressions:
if sub1 in item or sub2 in item:
if sub1 in item and sub2 in item:
The and
operator evaluates its left-hand operand and, if the result is truthy, returns the right-hand operand, otherwise the left-hand operand.
The or
operator evaluates its left-hand operand and, if the result is falsy, returns the right-hand operand, otherwise the left-hand operand.
So, in your first expression evaluates as follows:
(sub1 and sub2) in item
("teacher" and "sales") in item
("sales") in item
which is not what you expected.
Similarly for your second expression:
(sub1 or sub2) in item
("teacher" or "sales") in item
("teacher") in item
answered 5 hours ago
RobᵩRobᵩ
116k13138222
116k13138222
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54821841%2fwhy-and-or-operations-in-python-statement-are-behaving-unexpectedly%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
(sub1 and sub2) in item
what will be the result of the expression in the brackets? That will be checked againstitem
.– Klaus D.
5 hours ago
Change
(sub1 and sub2) in item
tosub1 in item and sub2 in item
– Tom Karzes
5 hours ago
1
Possible duplicate of can Python 'and' return None?
– user5173426
4 hours ago