Select rows pandas with the desired substring

Viewed 21

hellow! I have same pandas dataframe, there are column with same feature about product. Their code listed through space. Like this: 3077 1230 123 I'd like to select rows with feature '123'. How can i do it.

data['123' in data['feature']] - Some classical masks doesn't work Thank you!

0 Answers
Related