data frame number of rows 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: python- number of row in a dataframe
index = df.index
number_of_rows = len(index)