15
votes
if 'string1' in line: ...

... works as expected but what if I need to check multiple strings like so:

if 'string1' or 'string2' or 'string3' in line: ...

... doesn't seem to work.

7

7 Answers

33
votes
if any(s in line for s in ('string1', 'string2', ...)):
5
votes

If you read the expression like this

if ('string1') or ('string2') or ('string3' in line):

The problem becomes obvious. What will happen is that 'string1' evaluates to True so the rest of the expression is shortcircuited.

The long hand way to write it is this

if 'string1' in line or 'string2' in line or 'string3' in line:

Which is a bit repetitive, so in this case it's better to use any() like in Ignacio's answer

1
votes
if 'string1' in line or 'string2' in line or 'string3' in line:

Would that be fine for what you need to do?

1
votes

or does not behave that way. 'string1' or 'string2' or 'string3' in line is equivalent to ('string1') or ('string2') or ('string3' in line), which will always return true (actually, 'string1').

To get the behavior you want, you can say if any(s in line for s in ('string1', 'string2', 'string3')):.

1
votes

  1. You have this confusion Because you don't understand how the logical operator works with respect to string.

    Python considers empty strings as False and Non empty Strings as True.

    Proper functioning is :

    a and b returns b if a is True, else returns a.

    a or b returns a if a is True, else returns b.

    Therefore every time you put in a non empty string in place of string1 the condition will return True and proceed , which will result in an undesired Behavior . Hope it Helps :).

0
votes

Using map and lambda

a = ["a", "b", "c"]
b = ["a", "d", "e"]
c = ["1", "2", "3"]

# any element in `a` is a element of `b` ?
any(map(lambda x:x in b, a))
>>> True

# any element in `a` is a element of `c` ?
any(map(lambda x:x in c, a)) # any element in `a` is a element of `c` ?
>>> False

and high-order function

has_any = lambda b: lambda a: any(map(lambda x:x in b, a))

# using ...
f1 = has_any( [1,2,3,] )
f1( [3,4,5,] )
>>> True
f1( [6,7,8,] )
>>> False
0
votes

also as for "or", you can make it for "and". and these are the functions for even more readablity:

returns true if any of the arguments are in "inside_of" variable:

def any_in(inside_of, arguments):
  return any(argument in inside_of for argument in arguments)

returns true if all of the arguments are in "inside_of" variable:

same, but just replace "any" for "all"