get total rows in dataframe code example
Example 1: get number of rows pandas
number_of_rows = len(df)
Example 2: Returns the number of rows in this DataFrame
# Returns the number of rows in this DataFrame
df.count()
# 2
number_of_rows = len(df)
# Returns the number of rows in this DataFrame
df.count()
# 2