Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Python | Pandas Index.flags

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

Pandas Index is an immutable ndarray implementing an ordered, sliceable set. It is the basic object which stores the axis labels for all pandas objects.

Pandas Index.flags attribute return the status of all the flags for the given Index object.

Syntax: Index.flags

Parameter : None

Returns : status of flags

Example #1: Use Index.flags attribute to find the status of all the flags for the given Index object.




# importing pandas as pd
import pandas as pd
  
# Creating the index
idx = pd.Index(['Jan', 'Feb', 'Mar', 'Apr', 'May'])
  
# Print the index
print(idx)

Output :

Now we will use Index.flags attribute to find the status of all the flags for the given Index object.




# return the status of the flags
result = idx.flags
  
# Print the result
print(result)

Output :

As we can see in the output, the Index.flags attribute has returned the status of all the flags for the given Index object.

Example #2 : Use Index.flags attribute to find the status of all the flags for the given Index object.




# importing pandas as pd
import pandas as pd
  
# Creating the index
idx = pd.Index([100, 200, 142, 88, 124])
  
# Print the index
print(idx)

Output :

Now we will use Index.flags attribute to find the status of all the flags for the given Index object.




# return the status of the flags
result = idx.flags
  
# Print the result
print(result)

Output :

As we can see in the output, the Index.flags attribute has returned the status of all the flags for the given Index object.


My Personal Notes arrow_drop_up
Last Updated : 20 Feb, 2019
Like Article
Save Article
Similar Reads
Related Tutorials