यह जाँचने के लिए कि पंडों का सूचकांक वस्तु प्रकार का है या नहीं, index.is_object() का उपयोग करें तरीका। सबसे पहले, आवश्यक पुस्तकालयों को आयात करें -
import pandas as pd
पांडा इंडेक्स बनाना -
index = pd.Index(["Electronics", 6, 10.5, "Accessories", 25.6, 30])
पांडा सूचकांक प्रदर्शित करें -
print("Pandas Index...\n",index)
जाँचें कि क्या अनुक्रमणिका मानों में ऑब्जेक्ट dtype है -
print("\nIs the Index of object dtype?\n", index.is_object())
उदाहरण
निम्नलिखित कोड है -
import pandas as pd # Creating Pandas index index = pd.Index(["Electronics", 6, 10.5, "Accessories", 25.6, 30]) # Display the Pandas index print("Pandas Index...\n",index) # Return the number of elements in the Index print("\nNumber of elements in the index...\n",index.size) # Return the dtype of the data print("\nThe dtype object...\n",index.dtype) # check whether index values has object dtype print("\nIs the Index of object dtype?\n", index.is_object())
आउटपुट
यह निम्नलिखित आउटपुट देगा -
Pandas Index... Index(['Electronics', 6, 10.5, 'Accessories', 25.6, 30], dtype='object') Number of elements in the index... 6 The dtype object... object Is the Index of object dtype? True