Answers for "finding number of columns and rows in python7"

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

Code answers related to "finding number of columns and rows in python7"

Python Answers by Framework

Browse Popular Code Answers by Language