Print the Length of DataFrames at a Specified Location
Let's find out how length and slicing operations work in pandas DataFrames.
We'll cover the following...
Try it yourself
Try executing the code below to see the result.
Press + to interact
import pandas as pddf = pd.DataFrame([[1, 1, 1],[2, 2, 2],[3, 3, 3],[4, 4, 4],[5, 5, 5],])print(len(df.loc[1:3]))
Explanation
Slices in Python are