Python | Pandas PeriodIndex.weekday 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.weekday attribute return an Index object containing the day of the week with Monday=0 to Sunday=6 for each period element in the given PeriodIndex object. Syntax : PeriodIndex.weekday Parameters : None Return : Index object Example #1: Use PeriodIndex.weekday attribute to find out the day of the week for 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-11 02:45:21 ', end ='2004-11-21 8:45:29', freq ='D') # Print the PeriodIndex object print(pidx) Output : Now we will use the PeriodIndex.weekday attribute to find the day of the week for each period element in the pidx object. Python3 # return the day of the week pidx.weekday Output : As we can see in the output, the PeriodIndex.weekday attribute has returned an Index object containing the day of the week for each period element contained in the given PeriodIndex object. Example #2: Use PeriodIndex.weekday attribute to find out the day of the week for 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-2-12 11:12:02', end ='2016-09-12 11:32:12', freq ='M') # Print the PeriodIndex object print(pidx) Output : Now we will use the PeriodIndex.weekday attribute to find the day of the week for each period element in the pidx object. Python3 # return the day of the week pidx.weekday Output : As we can see in the output, the PeriodIndex.weekday attribute has returned an Index object containing the day of the week for each period element contained in the given PeriodIndex object. Comment More infoAdvertise with us Next Article Python | Pandas PeriodIndex.year S Shubham__Ranjan Follow Improve Article Tags : Technical Scripter Python Python-pandas Pandas periodIndex Practice Tags : python Similar Reads 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 Period.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 Period.weekday attribute returns an integer value indicating the weekday of the 2 min read Python | Pandas PeriodIndex.weekofyear 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.weekofyear attribute return an Index object containing the ordinal 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 Period.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 Period.week attribute returns an integer value which represents the week number 2 min read Python | Pandas PeriodIndex.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 PeriodIndex.second attribute return an Index object containing the second value 2 min read Like