Python | Pandas Index.shape Last Updated : 20 Feb, 2019 Summarize Comments Improve Suggest changes Share Like Article Like Report 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.shape attribute return a tuple of the shape of the underlying data in the given Index object. Syntax: Index.shape Parameter : None Returns : tuple Example #1: Use Index.shape attribute to return a tuple of the shape of the underlying data in the given Index object. Python3 # importing pandas as pd import pandas as pd # Creating the index idx = pd.Index(['Melbourne', 'Sanghai', 'Lisbon', 'Doha', 'Moscow', 'Rio']) # Print the index print(idx) Output : Now we will use Index.shape attribute to return a tuple of the shape of the underlying data in the given Index object. Python3 1== # return a tuple of the shape # of data in idx object result = idx.shape # Print the result print(result) Output : As we can see in the output, the Index.shape attribute has returned a tuple based on the size of the underlying data in the given Index object. Example #2 : Use Index.shape attribute to return a tuple of the shape of the underlying data in the given Index object. Python3 # importing pandas as pd import pandas as pd # Creating the index idx = pd.Index([900 + 3j, 700 + 25j, 620 + 10j, 388 + 44j, 900]) # Print the index print(idx) Output : Now we will use Index.shape attribute to return a tuple of the shape of the underlying data in the given Index object. Python3 1== # return a tuple of the shape # of data in idx object result = idx.shape # Print the result print(result) Output : As we can see in the output, the Index.shape attribute has returned a tuple based on the size of the underlying data in the given Index object. Comment More infoAdvertise with us Next Article Python | Pandas Index.where S Shubham__Ranjan Follow Improve Article Tags : Python Python-pandas Python pandas-indexing Practice Tags : python Similar Reads Python | Pandas Index.size 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.size attribute return the number of elements in the underlying data of the given Index object. Syntax: Index.size Parameter : None Ret 2 min read Python | Pandas Index.where 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.where function return an Index of same shape as self and whose corresponding entries are from self where cond is True and otherwise ar 2 min read Python | Pandas Index.values 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.values attribute return an array representing the data in the given Index object. Syntax: Index.values Parameter : None Returns : an a 2 min read Python | Pandas Index.strides 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.strides attribute return the strides of the underlying data of the given Index object. It basically return a tuple of bytes to step in 2 min read Python | Pandas Index.summary() Python is a great language for doing data analysis, primarily because of the fantastic ecosystem of data-centric python packages. Pandas is one of those packages and makes importing and analyzing data much easier. Pandas Index.summary() function return a summarized representation of the Index. This 2 min read Python | Pandas Index.to_series() Python is a great language for doing data analysis, primarily because of the fantastic ecosystem of data-centric python packages. Pandas is one of those packages and makes importing and analyzing data much easier. Pandas Index.to_series() function create a Series with both index and values equal to 2 min read Like