...

/

Print the Length of DataFrames at a Specified Location

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 pd
df = 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 half-open rangesA half-open range includes the first element but excludes the last one.. We get values from ...