Python Pandas - Display the value of the stop parameter of RangeIndex


To display the value of the stop parameter of RangeIndex, use the index.stop property in Pandas.

At first, import the required libraries −

import pandas as pd

RangeIndex is a memory-saving special case of Int64Index limited to representing monotonic ranges. Create a range index with start, stop and step. The name is the name to be stored in the index.

index = pd.RangeIndex(start=5, stop=20, step=2, name="data")

Display the RangeIndex −

print("RangeIndex...\n",index)

Display the stop parameter value −

print("\nRangeIndex stop value...\n",index.stop)

Example

Following is the code −

import pandas as pd

# RangeIndex is a memory-saving special case of Int64Index limited to representing monotonic ranges.
# Using RangeIndex may in some instances improve computing speed.
# Create a range index with start, stop and step
# The name is the name to be stored in the index.
index = pd.RangeIndex(start=10, stop=30, step=2, name="data")

# Display the RangeIndex
print("RangeIndex...\n",index)

# Display the stop parameter value
print("\nRangeIndex stop value...\n",index.stop)

Output

This will produce the following output −

RangeIndex...
RangeIndex(start=10, stop=30, step=2,name='data')

RangeIndex stop value...
30

Updated on: 14-Oct-2021

342 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements