Skip to content
Advertisement

Send column names that contain a certain string to a list in pandas

I have the following dataframe that contains columns like:

JavaScript

I would like the column names that contain _main sent to a list. such as:

JavaScript

How best could I do that? Thanks very much!

Advertisement

Answer

try via filter() method:

JavaScript

OR

Via boolean masking:

JavaScript
User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement