Computer >> कंप्यूटर >  >> प्रोग्रामिंग >> Python

पायथन पांडा - एक सूचकांक के तत्वों को दोहराएं

किसी अनुक्रमणिका के तत्वों को दोहराने के लिए, 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')

  1. पायथन - सूची में आसन्न तत्व

    जब सूची में आसन्न तत्वों को प्रदर्शित करने की आवश्यकता होती है, तो एक विधि परिभाषित की जाती है जो परिणाम निर्धारित करने के लिए गणना और एक सरल पुनरावृत्ति का उपयोग करती है। उदाहरण नीचे उसी का एक प्रदर्शन है - def find_adjacent_elements(my_list):    my_result = []    for index, el

  1. पायथन - समान सूचकांक वाले तत्व

    जब समान अनुक्रमणिका वाले तत्वों को प्रदर्शित करने की आवश्यकता होती है, तो एक साधारण पुनरावृत्ति और गणना विशेषता का उपयोग किया जाता है। नीचे उसी का एक प्रदर्शन है - उदाहरण my_list = [33, 1, 2, 45, 41, 13, 6, 9] print("The list is :") print(my_list) my_result = [] for index, element in en

  1. पायथन में दो सूची सूचकांक तत्वों की बराबरी करें

    पायथन के साथ डेटा हेरफेर के दौरान, हमें दो सूचियों को एक साथ लाने और उनमें से प्रत्येक में तत्वों को जोड़ीदार बनाने की आवश्यकता हो सकती है। जिसका अर्थ है कि सूची 1 से सूचकांक 0 पर तत्व सूची 2 के सूचकांक 0 से तत्व के साथ समान होगा। टुपल के साथ प्रत्येक सूची में तत्वों को क्रम से लेने और उनका मिलान क