두 인덱스 개체가 같은지 확인하려면 equals()를 사용합니다. 방법.
먼저 필요한 라이브러리를 가져옵니다 -
import pandas as pd
index1 및 index2 생성 -
index1 = pd.Index([15, 25, 55, 10, 100, 70, 35, 40, 55]) index2 = pd.Index([15, 25, 55, 10, 100, 70, 35, 40, 55])
index1 및 index2 표시 -
print("Pandas Index1...\n",index1) print("Pandas Index2...\n",index2)
두 인덱스 개체가 동일한지 확인 -
index1.equals(index2)
예시
다음은 코드입니다 -
import pandas as pd # Creating index1 and index2 index1 = pd.Index([15, 25, 55, 10, 100, 70, 35, 40, 55]) index2 = pd.Index([15, 25, 55, 10, 100, 70, 35, 40, 55]) # Display the index1 and index2 print("Pandas Index1...\n",index1) print("Pandas Index2...\n",index2) print("\nAre these two Index objects equal?\n",index1.equals(index2))
출력
이것은 다음 코드를 생성합니다 -
Pandas Index1... Int64Index([15, 25, 55, 10, 100, 70, 35, 40, 55], dtype='int64') Pandas Index2... Int64Index([15, 25, 55, 10, 100, 70, 35, 40, 55], dtype='int64') Are these two Index objects equal? True