Answers for "panda get number of columns"

5

pandas dataframe get number of columns

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

len(df.columns)
3
Posted by: Guest on August-23-2020
1

pandas number of columns

### first method ###
len(df.columns)
### second method ###
df.shape[1]
Posted by: Guest on September-24-2021

Code answers related to "panda get number of columns"

Python Answers by Framework

Browse Popular Code Answers by Language