Python | Pandas PeriodIndex.second Last Updated : 06 Jan, 2019 Summarize Comments Improve Suggest changes Share 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 PeriodIndex.second attribute return an Index object containing the second values for each period element present in the given PeriodIndex object. Syntax : PeriodIndex.second Parameters : None Return : Index object Example #1: Use PeriodIndex.second attribute to find out the second values present in each period element in the given PeriodIndex object. Python3 # importing pandas as pd import pandas as pd # Create the PeriodIndex object pidx = pd.PeriodIndex(start ='2004-11-21 08:45:21 ', end ='2004-11-21 8:45:29', freq ='S') # Print the PeriodIndex object print(pidx) Output : Now we will use the PeriodIndex.second attribute to find out the second values for each period element in pidx object. Python3 # return the second values pidx.second Output : As we can see in the output, the PeriodIndex.second attribute has returned seconds object containing the seconds value for each period in the given PeriodIndex object. Example #2: Use PeriodIndex.second attribute to find out the second values present in each period element in the given PeriodIndex object. Python3 # importing pandas as pd import pandas as pd # Create the PeriodIndex object pidx = pd.PeriodIndex(start ='2016-8-12 11:32:02', end ='2016-08-12 11:32:12', freq ='S') # Print the PeriodIndex object print(pidx) Output : Now we will use the PeriodIndex.second attribute to find out the second values for each period element in pidx object. Python3 # return the second values pidx.second Output : As we can see in the output, the PeriodIndex.second attribute has returned an Index object containing the seconds value for each period in the given PeriodIndex object. Comment More infoAdvertise with us Next Article Python | Pandas PeriodIndex.weekday S Shubham__Ranjan Follow Improve Article Tags : Technical Scripter Python Python-pandas Pandas periodIndex Practice Tags : python Similar Reads Python | Pandas Period.second 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 Period.second attribute returns an integer value which represents the value of s 2 min read Python | Pandas PeriodIndex.year 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 PeriodIndex.year attribute return an Index object containing the year value of 2 min read Python | Pandas PeriodIndex.week 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 PeriodIndex.week attribute return an Index object containing the ordinal value 2 min read Python | Pandas PeriodIndex.qyear 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 PeriodIndex.qyear attribute return an Index object containing the fiscal year t 2 min read Python | Pandas PeriodIndex.weekday 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 PeriodIndex.weekday attribute return an Index object containing the day of the 2 min read Python | Pandas PeriodIndex.strftime 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 PeriodIndex.strftime() function return an array of formatted strings specified 2 min read Like