यह निर्धारित करने के लिए कि विपरीत क्रम वाली दो इंडेक्स ऑब्जेक्ट बराबर हैं या नहीं, बराबर () . का उपयोग करें विधि।
सबसे पहले, आवश्यक पुस्तकालयों को आयात करें -
import pandas as pd
पांडा अनुक्रमणिका1 और अनुक्रमणिका2 बनाना -
index1 = pd.Index([15, 25, 35, 45, 55, 65, 75, 85, 95]) index2 = pd.Index([95, 85, 75, 65, 55, 45, 35, 25, 15])
अनुक्रमणिका1 और अनुक्रमणिका2 प्रदर्शित करें -
print("Pandas Index1...\n",index1) print("Pandas Index2...\n",index2)
जांचें कि विपरीत क्रम वाली दो अनुक्रमणिका वस्तुएं समान हैं या नहीं -
print("\nAre two Index objects with opposite order equal?" "\n",index1.equals(index2))
उदाहरण
निम्नलिखित कोड है -
import pandas as pd # Creating Pandas index1 and index2 index1 = pd.Index([15, 25, 35, 45, 55, 65, 75, 85, 95]) index2 = pd.Index([95, 85, 75, 65, 55, 45, 35, 25, 15]) # Display the index1 and index2 print("Pandas Index1...\n",index1) print("Pandas Index2...\n",index2) print("\nAre two Index objects with opposite order equal?" "\n",index1.equals(index2))
आउटपुट
यह निम्नलिखित कोड उत्पन्न करेगा -
Pandas Index1... Int64Index([15, 25, 35, 45, 55, 65, 75, 85, 95], dtype='int64') Pandas Index2... Int64Index([95, 85, 75, 65, 55, 45, 35, 25, 15], dtype='int64') Are two Index objects with opposite order equal? False