get the row number of a dataframe code example
Example 1: Returns the number of rows in this DataFrame
# Returns the number of rows in this DataFrame
df.count()
# 2
Example 2: get number of rows pandas
number_of_rows = len(df)
Example 3: python- number of row in a dataframe
index = df.index
number_of_rows = len(index)