0
JPJavier Pacheco
The df[df['column'].str.contains('filter')] function will return a boolean indicating whether the string 'filter' is found anywhere in the column value.
0 Comments
import pandas as pd df[df['column'].str.contains('filter')]