Python | Pandas Index.values Last Updated : 20 Feb, 2019 Comments Improve Suggest changes 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.values attribute return an array representing the data in the given Index object. Syntax: Index.values Parameter : None Returns : an array Example #1: Use Index.values attribute to return an array representing the 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.values attribute to return an array representing the data in the given Index object. Python3 1== # return an array result = idx.values # Print the result print(result) Output : As we can see in the output, the Index.values attribute has successfully returned an array representing the data of the given Index object. Example #2 : Use Index.values attribute to return an array representing the 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.values attribute to return an array representing the data in the given Index object. Python3 1== # return an array result = idx.values # Print the result print(result) Output : As we can see in the output, the Index.values attribute has successfully returned an array representing the data of the given Index object. Comment More infoAdvertise with us Next Article Python | Pandas Index.values S Shubham__Ranjan Follow Improve Article Tags : Python Python-pandas Python pandas-indexing Practice Tags : python Similar Reads Python | Pandas Index.get_values() 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.get_values() function returns the Index data as an numpy.ndarray. It retu 2 min read Python | Pandas Index.sort_values() 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.sort_values() function is used to sort the index values. The function ret 2 min read Python | Pandas Index.shape 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 Ret 2 min read Python | Pandas Index.tolist() 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.tolist() function return a list of the values. These are each a scalar ty 1 min read 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 Like