Python Pandas - Check if the index is empty with 0 elements


To check if the index is empty with 0 elements, use the index.empty property in Pandas.

At first, import the required libraries −

import pandas as pd

Creating the index −

index = pd.Index([])

Display the index −

print("Pandas Index...\n",index)

Check for empty index −

print("\nIs the index empty?\n",index.empty)

Example

Following is the code −

import pandas as pd

# Creating the index
index = pd.Index([])

# Display the index
print("Pandas Index...\n",index)

# Return the number of elements in the Index
print("\nNumber of elements in the index...\n",index.size)

# check for empty index
print("\nIs the index empty?\n",index.empty)

Output

This will produce the following code −

Pandas Index...
Index([], dtype='object')

Number of elements in the index...
0

Is the index empty?
True

Updated on: 13-Oct-2021

2K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements