Is there a way to do something similar to SQL\'s LIKE syntax on a pandas text DataFrame column, such that it returns a list of indices, or a list of booleans that can be use
you can use
s.str.contains('a', case = False)