বিপরীত ক্রম সহ দুটি সূচক বস্তু সমান কিনা তা নির্ধারণ করতে, সমান() ব্যবহার করুন পদ্ধতি।
প্রথমে, প্রয়োজনীয় লাইব্রেরিগুলি আমদানি করুন -
import pandas as pd
পান্ডাস ইনডেক্স 1 এবং ইনডেক্স 2 তৈরি করা হচ্ছে -
index1 = pd.Index([15, 25, 35, 45, 55, 65, 75, 85, 95]) index2 = pd.Index([95, 85, 75, 65, 55, 45, 35, 25, 15])
index1 এবং index2 −
প্রদর্শন করুনprint("Pandas Index1...\n",index1) print("Pandas Index2...\n",index2)
−
বিপরীত ক্রম সহ দুটি সূচক বস্তু সমান কিনা তা পরীক্ষা করুনprint("\nAre two Index objects with opposite order equal?" "\n",index1.equals(index2))
উদাহরণ
নিম্নলিখিত কোড -
import pandas as pd # Creating Pandas index1 and index2 index1 = pd.Index([15, 25, 35, 45, 55, 65, 75, 85, 95]) index2 = pd.Index([95, 85, 75, 65, 55, 45, 35, 25, 15]) # Display the index1 and index2 print("Pandas Index1...\n",index1) print("Pandas Index2...\n",index2) print("\nAre two Index objects with opposite order equal?" "\n",index1.equals(index2))
আউটপুট
এটি নিম্নলিখিত কোড তৈরি করবে -
Pandas Index1... Int64Index([15, 25, 35, 45, 55, 65, 75, 85, 95], dtype='int64') Pandas Index2... Int64Index([95, 85, 75, 65, 55, 45, 35, 25, 15], dtype='int64') Are two Index objects with opposite order equal? False