VOOZH about

URL: https://www.geeksforgeeks.org/python/python-pandas-index-itemsize/

⇱ Python | Pandas Index.itemsize - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Python | Pandas Index.itemsize

Last Updated : 20 Feb, 2019
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.itemsize attribute return the size of the dtype of the items of the underlying data in the given Index object.
Syntax: Index.itemsize Parameter : None Returns : return the size of dtype
Example #1: Use Index.itemsize attribute to find out the size of the dtype of the underlying data in the given Index object. Output : 👁 Image
Now we will use Index.itemsize attribute to find out the size of the dtype of the underlying data in the given Index object. Output : 👁 Image
As we can see in the output, the Index.itemsize attribute has returned 8, indicating that the size of the dtype of the underlying data in the index object is 8.   Example #2 : Use Index.itemsize attribute to find out the size of the dtype of the underlying data in the given Index object. Output : 👁 Image
Now we will use Index.itemsize attribute to find out the size of the dtype of the underlying data in the given Index object.
Output : 👁 Image
As we can see in the output, the Index.itemsize attribute has returned 8, indicating that the size of the dtype of the underlying data in the index object is 8.
Comment