Communities for your favorite technologies. Explore all Collectives
Stack Overflow for Teams is now called Stack Internal. Bring the best of human thought and AI automation together at your work.
Bring the best of human thought and AI automation together at your work. Learn more
Find centralized, trusted content and collaborate around the technologies you use most.
Stack Internal
Knowledge at work
Bring the best of human thought and AI automation together at your work.
I do not understand the logical idea of this behavior:
d = {'a': 'a', 'b': 'b', } print('' in d['a']) #---> True print(d['a'] in '') #---> False
can someone help me?
in
==
True
It's because it's searching the string 'a', if you ask if an empty string is in a non-empty string (or an empty string) it will return true.
What you are really asking is:
'' in 'a'
Out: True # Notice that 'a' is the same as '' + 'a'
'a' in ''
Out: False
Add a comment
Start asking to get answers
Find the answer to your question by asking.
Explore related questions
See similar questions with these tags.
inoperator is not commutative.==?inis almost never commutative. The only exception is when==isTrue.