How do I retrieve the number of columns in a Pandas data frame?

dataframe, pandas, python

Solution

Like so:

import pandas as pd
df = pd.DataFrame({"pear": [1,2,3], "apple": [2,3,4], "orange": [3,4,5]})

len(df.columns)
3

Problem

How do you programmatically retrieve the number of columns in a pandas dataframe? I was hoping for something like: ``` df.num_columns ```

Original source