यह जांचने के लिए कि क्या दो इंडेक्स ऑब्जेक्ट्स में समान ऑब्जेक्ट विशेषताएँ और प्रकार हैं, index1.identical(index2) का उपयोग करें। विधि।
सबसे पहले, आवश्यक पुस्तकालयों को आयात करें -
import pandas as pd
पांडा अनुक्रमणिका1 और अनुक्रमणिका2 बनाना -
index1 = pd.Index([15, 25, 35, 45, 55]) index2 = pd.Index([15, 25, 35, 45, 55])
अनुक्रमणिका1 और अनुक्रमणिका2 प्रदर्शित करें -
print("Pandas Index1...\n",index1) print("Pandas Index2...\n",index2)
जांचें कि दो इंडेक्स ऑब्जेक्ट्स में समान गुण और प्रकार हैं या नहीं -
print("\nThe two Index objects have similar attributes and types?" "\n",index1.identical(index2))
उदाहरण
निम्नलिखित कोड है -
import pandas as pd # Creating Pandas index1 and index2 index1 = pd.Index([15, 25, 35, 45, 55]) index2 = pd.Index([15, 25, 35, 45, 55]) # Display the index1 and index2 print("Pandas Index1...\n",index1) print("Pandas Index2...\n",index2) print("\nThe two Index objects have similar attributes and types?" "\n",index1.identical(index2))
आउटपुट
यह निम्नलिखित आउटपुट देगा -
Pandas Index1... Int64Index([15, 25, 35, 45, 55], dtype='int64') Pandas Index2... Int64Index([15, 25, 35, 45, 55], dtype='int64') The two Index objects have similar attributes and types? True