RangeIndex के स्टॉप पैरामीटर का मान प्रदर्शित करने के लिए, index.stop . का उपयोग करें पंडों में संपत्ति।
सबसे पहले, आवश्यक पुस्तकालयों को आयात करें -
import pandas as pd
RangeIndex, Int64Index का एक मेमोरी-सेविंग स्पेशल केस है, जो मोनोटोनिक रेंज का प्रतिनिधित्व करने तक सीमित है। स्टार्ट, स्टॉप और स्टेप के साथ रेंज इंडेक्स बनाएं। नाम अनुक्रमणिका में संग्रहीत किया जाने वाला नाम है।
index = pd.RangeIndex(start=5, stop=20, step=2, name="data")
रेंजइंडेक्स प्रदर्शित करें -
print("RangeIndex...\n",index)
स्टॉप पैरामीटर मान प्रदर्शित करें -
print("\nRangeIndex stop value...\n",index.stop)
उदाहरण
निम्नलिखित कोड है -
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)
आउटपुट
यह निम्नलिखित आउटपुट देगा -
RangeIndex... RangeIndex(start=10, stop=30, step=2,name='data') RangeIndex stop value... 30