अनुक्रमणिका मानों की सूची वापस करने के लिए, index.to_list() . का उपयोग करें पंडों में विधि। सबसे पहले, आवश्यक पुस्तकालयों को आयात करें -
import pandas as pd
पांडा इंडेक्स बनाना -
index = pd.Index([50.4, 10.2, 70.5, 110.5, 90.8, 50.6])
पांडा सूचकांक प्रदर्शित करें -
print("Pandas Index...\n",index) एक सूची लौटाएं -
print("\nList of the index values...\n",index.to_list())
उदाहरण
निम्नलिखित कोड है -
import pandas as pd
# Creating Pandas index
index = pd.Index([50.4, 10.2, 70.5, 110.5, 90.8, 50.6])
# 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)
# return a list
print("\nList of the index values...\n",index.to_list()) आउटपुट
यह निम्नलिखित आउटपुट देगा -
Pandas Index... Float64Index([50.4, 10.2, 70.5, 110.5, 90.8, 50.6], dtype='float64') Number of elements in the index... 6 The dtype object... float64 List of the index values... [50.4, 10.2, 70.5, 110.5, 90.8, 50.6]