किसी अनुक्रमणिका के तत्वों को दोहराने के लिए, index.repeat() . का उपयोग करें पंडों में विधि। एक तर्क के रूप में दोहराव की संख्या निर्धारित करें। सबसे पहले, आवश्यक पुस्तकालयों को आयात करें -
import pandas as pd
पांडा इंडेक्स बनाना -
index = pd.Index(['Car','Bike','Airplane', 'Ship','Truck','Suburban'], name ='Transport')
पांडा सूचकांक प्रदर्शित करें -
print("Pandas Index...\n",index)
सूचकांक के तत्वों को दोहराएं -
print("\nResult after repeating each index element twice...\n",index.repeat(2))
उदाहरण
निम्नलिखित कोड है -
import pandas as pd # Creating Pandas index index = pd.Index(['Car','Bike','Airplane', 'Ship','Truck','Suburban'], name ='Transport') # 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) # repeat elements of the index print("\nResult after repeating each index element twice...\n",index.repeat(2))
आउटपुट
यह निम्नलिखित आउटपुट उत्पन्न करेगा -
Pandas Index... Index(['Car', 'Bike', 'Airplane', 'Ship', 'Truck', 'Suburban'], dtype='object', name='Transport') Number of elements in the index... 6 The dtype object... object Result after repeating each index element twice... Index(['Car', 'Car', 'Bike', 'Bike', 'Airplane', 'Airplane', 'Ship', 'Ship', 'Truck', 'Truck', 'Suburban', 'Suburban'], dtype='object', name='Transport')