Python | Pandas Series.loc Last Updated : 28 Jan, 2019 Comments Improve Suggest changes Like Article Like Report 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 series is a One-dimensional ndarray with axis labels. The labels need not be unique but must be a hashable type. The object supports both integer- and label-based indexing and provides a host of methods for performing operations involving the index. Pandas Series.loc attribute is used to access a group of rows and columns by label(s) or a boolean array in the given Series object. Syntax:Series.loc Parameter : None Returns : series Example #1: Use Series.loc attribute to select some values from the given Series object based on the labels. Python3 # importing pandas as pd import pandas as pd # Creating the Series sr = pd.Series(['New York', 'Chicago', 'Toronto', 'Lisbon']) # Creating the row axis labels sr.index = ['City 1', 'City 2', 'City 3', 'City 4'] # Print the series print(sr) Output : Now we will use Series.loc attribute to return the values of the selected labels in the given Series object. Python3 1== # return the selected values. sr.loc[['City 4', 'City 3', 'City 1']] Output : As we can see in the output, the Series.loc attribute has returned the name of the cities whose labels were passed to it. Example #2 : Use Series.loc attribute to select some values from the given Series object based on the labels. Python3 # importing pandas as pd import pandas as pd # Creating the Series sr = pd.Series(['1/1/2018', '2/1/2018', '3/1/2018', '4/1/2018']) # Creating the row axis labels sr.index = ['Day 1', 'Day 2', 'Day 3', 'Day 4'] # Print the series print(sr) Output : Now we will use Series.loc attribute to return the values of the selected labels in the given Series object. Python3 1== # return the selected values. sr.loc[['Day 4', 'Day 3', 'Day 1']] Output : As we can see in the output, the Series.loc attribute has returned the name of the cities whose labels were passed to it. Comment More infoAdvertise with us Next Article Python | Pandas Series.loc S Shubham__Ranjan Follow Improve Article Tags : Python Pandas Python-pandas Python pandas-series-methods AI-ML-DS With Python +1 More Practice Tags : python Similar Reads Python | Pandas Series.iloc 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 series is a One-dimensional ndarray with axis labels. The labels need not be un 2 min read Python | Pandas Series.le() 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 series.le() is used to compare every element of Caller series with passed serie 3 min read Python | Pandas Series.mod() 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. Python Series.mod() is used to return the remainder after division of two numbers Synt 3 min read Python Pandas Series Pandas Series is a one-dimensional labeled array that can hold data of any type (integer, float, string, Python objects, etc.). It is similar to a column in an Excel spreadsheet or a database table. In this article we will study Pandas Series a powerful one-dimensional data structure in Python.Key F 5 min read Python | Pandas Series.last() Pandas series is a One-dimensional ndarray with axis labels. The labels need not be unique but must be a hashable type. The object supports both integer- and label-based indexing and provides a host of methods for performing operations involving the index. Pandas Series.last() function is a convenie 2 min read Python | Pandas Series.mode() Pandas series is a One-dimensional ndarray with axis labels. The labels need not be unique but must be a hashable type. The object supports both integer- and label-based indexing and provides a host of methods for performing operations involving the index. Pandas Series.mode() function return the mo 2 min read Python | Pandas Series.at 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 Series.at attribute enables us to access a single value for a row/column label 2 min read Python | Pandas Series.ix 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 series is a One-dimensional ndarray with axis labels. The labels need not be un 2 min read Python | Pandas Series.as_blocks() Pandas series is a One-dimensional ndarray with axis labels. The labels need not be unique but must be a hashable type. The object supports both integer- and label-based indexing and provides a host of methods for performing operations involving the index. Pandas Series.as_blocks() function is used 3 min read Python | Pandas Series.get() Pandas series is a One-dimensional ndarray with axis labels. The labels need not be unique but must be a hashable type. The object supports both integer- and label-based indexing and provides a host of methods for performing operations involving the index. Pandas Series.get() function get item from 2 min read Like