ইনপুট লেবেলের জন্য স্লাইস অবস্থান গণনা করতে, index.slice_locs() ব্যবহার করুন পদ্ধতি প্রথমে, প্রয়োজনীয় লাইব্রেরিগুলি আমদানি করুন -
import pandas as pd
পান্ডাস ইনডেক্স অবজেক্ট −
তৈরি করুনindex = pd.Index(list('pqrstuvwxyz'))
পান্ডাস সূচক প্রদর্শন করুন -
print("Pandas Index...\n",index)
স্লাইস অবস্থান পান. "শুরু" হল লেবেল যা দিয়ে শুরু করতে হবে। "শেষ" হল লেবেল যা দিয়ে শেষ করতে হবে
print("\nThe slice locations with start and stop...\n",index.slice_locs(start='q', end='v'))
উদাহরণ
নিম্নলিখিত কোড -
import pandas as pd # Create Pandas index object index = pd.Index(list('pqrstuvwxyz')) # 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) # Get the slice locations # The "start" is the label to begin with # The "end" is the label to end with print("\nThe slice locations with start and stop...\n",index.slice_locs(start='q', end='v'))
আউটপুট
এটি নিম্নলিখিত আউটপুট −
তৈরি করবেPandas Index... Index(['p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z'], dtype='object') Number of elements in the index... 11 The slice locations with start and stop... (1, 7)