একটি পান্ডাস সিরিজের প্রতিটি উপাদানকে ভিন্নভাবে পুনরাবৃত্তি করতে, index.repeat() ব্যবহার করুন পদ্ধতি প্রথমে, প্রয়োজনীয় লাইব্রেরি আমদানি করুন -
import pandas as pd
পান্ডাস সূচক তৈরি করা হচ্ছে -
index = pd.Index(['Car','Bike','Airplane', 'Ship'], name ='Transport')
পান্ডাস সূচক প্রদর্শন করুন -
print("Pandas Index...\n",index)
সূচকের প্রতিটি উপাদানকে একটি ভিন্ন উপায়ে পুনরাবৃত্তি করুন −
print("\nResult after repeating each index element in a different way...\n", index.repeat([2,3,5,7]))
উদাহরণ
নিম্নলিখিত কোড -
import pandas as pd # Creating Pandas index index = pd.Index(['Car','Bike','Airplane', 'Ship'], 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 each element of the index in a dissimilar way print("\nResult after repeating each index element in a different way...\n", index.repeat([2,3,5,7]))
আউটপুট
এটি নিম্নলিখিত আউটপুট −
তৈরি করবেPandas Index... Index(['Car', 'Bike', 'Airplane', 'Ship'], dtype='object', name='Transport') Number of elements in the index... 4 The dtype object... object Result after repeating each index element in a different way... Index(['Car', 'Car', 'Bike', 'Bike', 'Bike', 'Airplane', 'Airplane', 'Airplane', 'Airplane', 'Airplane', 'Ship', 'Ship', 'Ship', 'Ship', 'Ship', 'Ship', 'Ship'], dtype='object', name='Transport')