
- Python Basic Tutorial
- Python - Home
- Python - Overview
- Python - Environment Setup
- Python - Basic Syntax
- Python - Comments
- Python - Variables
- Python - Data Types
- Python - Operators
- Python - Decision Making
- Python - Loops
- Python - Numbers
- Python - Strings
- Python - Lists
- Python - Tuples
- Python - Dictionary
- Python - Date & Time
- Python - Functions
- Python - Modules
- Python - Files I/O
- Python - Exceptions
Python Pandas - Determine if two Index objects are equal
To determine if two Index objects are equal, use the equals() method.
At first, import the required libraries −
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)
Check whether two index objects are equal −
index1.equals(index2)
Example
Following is the code −
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))
Output
This will produce the following code −
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
- Related Articles
- Python Pandas - Determine if two Index objects with opposite orders are equal or not
- Python Pandas - Determine if two CategoricalIndex objects contain the same elements
- Python Pandas - Check if the Pandas Index holds Interval objects
- Python Pandas - Check if the dataframe objects are equal or not
- Python Pandas - Form the intersection of two Index objects
- Python Pandas - Form the Union of two Index objects
- Python Pandas - Compute the symmetric difference of two Index objects
- Check if two SortedSet objects are equal in C#
- Check if two BitArray objects are equal in C#
- Check if two ArrayList objects are equal in C#
- Check if two HashSet objects are equal in C#
- Check if two HybridDictionary objects are equal in C#
- Check if two LinkedList objects are equal in C#
- Check if two StringBuilder objects are Equal in C#
- Check if two Tuple Objects are equal in C#

Advertisements