Python | Pandas Series.at 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.at attribute enables us to access a single value for a row/column label pair. This attribute is similar to loc, in that both provide label-based lookups. Syntax:Series.at Parameter : None Returns : single value Example #1: Use Series.at attribute to access a single value at any specific location in the given Series object. Python3 # importing pandas as pd import pandas as pd # Creating the Series sr = pd.Series(['New York', 'Chicago', 'Toronto', 'Lisbon']) # Print the series print(sr) Output : Now we will use Series.at attribute to return the element present at the given index in the Series object. Python3 1== # return the element at the first position sr.at[1] Output : As we can see in the output, the Series.at attribute has returned 'Chicago' as this is the value which lies at the 1st position in the given Series object. Example #2 : Use Series.at attribute to access a single value at any specific location in the given Series object. Python3 # importing pandas as pd import pandas as pd # Creating the Series sr = pd.Series(['Sam', 21, 'Alisa', 18, 'Sophia', 19, 'Max', 17]) # Print the series print(sr) Output : Now we will use Series.at attribute to return the element present at the given index in the Series object. Python3 1== # return the element at the first position sr.at[5] Output : As we can see in the output, the Series.at attribute has returned '19' as this is the value which lies at the 5th position in the given Series object. Comment More infoAdvertise with us Next Article Python | Pandas Series.at 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.iat 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.data 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.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.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 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.item() 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.item() function return the fi 2 min read Python | Pandas Series.axes 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.isna() 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.isna() function detect missin 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.eq() 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.eq() is used to compare every element of Caller series with passed serie 3 min read Like