DEV Community

Nilotpal Choudhury
Nilotpal Choudhury

Posted on

Answer: Get list from pandas DataFrame column headers

There is a built in method which is the most performant:

my_dataframe.columns.values.tolist()

.columns returns an Index, .columns.values returns an array and this has a helper function .tolist to return a list.

If performance is not as important to you, Index objects define a .tolist() method that you can call directly:

Top comments (0)