শেষ থেকে প্রথম সূচকে একটি নতুন সূচক মান সন্নিবেশ করতে, index.insert() ব্যবহার করুন পদ্ধতি শেষ সূচক মান -1 সেট করুন এবং মানটি প্যারামিটার হিসাবে সন্নিবেশ করা হবে।
প্রথমে, প্রয়োজনীয় লাইব্রেরি আমদানি করুন -
import pandas as pd
পান্ডাস সূচক তৈরি করা হচ্ছে -
index = pd.Index(['Car','Bike','Airplane','Ship','Truck'])
সূচক প্রদর্শন করুন -
print("Pandas Index...\n",index)
insert() পদ্ধতি ব্যবহার করে শেষ থেকে প্রথম সূচকে একটি নতুন মান সন্নিবেশ করান। insert() এর প্রথম প্যারামিটার হল সেই অবস্থান যেখানে নতুন সূচক মান স্থাপন করা হয়েছে। এখানে -1 মানে নতুন সূচক মান শেষ থেকে প্রথম সূচকে সন্নিবেশিত হয়। দ্বিতীয় প্যারামিটার হল নতুন সূচক মান সন্নিবেশ করা হবে।
index.insert(-1, 'Suburban')
উদাহরণ
নিম্নলিখিত কোড -
import pandas as pd # Creating the Pandas index index = pd.Index(['Car','Bike','Airplane','Ship','Truck']) # Display the index print("Pandas Index...\n",index) # Return the dtype of the data print("\nThe dtype object...\n",index.dtype) # Insert a new value at the first index from the last using the insert() method. # The first parameter in the insert() is the location where the new index value is placed. # The -1 here means the new index value gets inserted at the first index from the last. # The second parameter is the new index value to be inserted. print("\nAfter inserting a new index value...\n", index.insert(-1, 'Suburban'))
আউটপুট
এটি নিম্নলিখিত আউটপুট −
তৈরি করবেPandas Index... Index(['Car', 'Bike', 'Airplane', 'Ship', 'Truck'], dtype='object') The dtype object... object After inserting a new index value... Index(['Car', 'Bike', 'Airplane', 'Ship', 'Suburban', 'Truck'], dtype='object')