I have a dataframe with more than 1000 columns. I would like to get a list of all column headers, but everything i tried so far works up to 1000 column names.
list(df.columns.values) list(df) This is the output what i got:
Is there any possibility to get a list of ALL column headers?
