Answers for "str.contains multiple and conditions"

1

str.contains multiple strings

>>> searchfor = ['og', 'at']
>>> s[s.str.contains('|'.join(searchfor))]
0    cat
1    hat
2    dog
3    fog
dtype: object
Posted by: Guest on September-15-2020

Code answers related to "str.contains multiple and conditions"

Browse Popular Code Answers by Language