number of rows python code example
Example 1: 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
Example 2: Returns the number of rows in this DataFrame
# Returns the number of rows in this DataFrame
df.count()
# 2
Example 3: get number of rows pandas
number_of_rows = len(df)