Python | Pandas Period.week 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 Period.week attribute returns an integer value which represents the week number in which the given period lies. Syntax : Period.week Parameters : None Return : week of the year Example #1: Use Period.week attribute to find out the week in which the given period object would lie. Python3 # importing pandas as pd import pandas as pd # Create the Period object prd = pd.Period(freq ='S', year = 2000, month = 2, day = 22, hour = 8, minute = 21, second = 24) # Print the Period object print(prd) Output : Now we will use the Period.week attribute to find the week in which prd object lies. Python3 # return the week value prd.week Output : As we can see in the output, the Period.week attribute has returned 8 indicating the following period object lies in the 8th week of the given year. Example #2: Use Period.week attribute to find out the week in which the given period object would lie. Python3 # importing pandas as pd import pandas as pd # Create the Period object prd = pd.Period(freq ='S', year = 2006, month = 10, hour = 15, minute = 49, second = 17) # Print the object print(prd) Output : Now we will use the Period.week attribute to find the week in which prd object lies. Python3 # return the week value prd.week Output : As we can see in the output, the Period.week attribute has returned 39 indicating the following period object lies in the 39th week of the given year. Comment More infoAdvertise with us Next Article Python | Pandas Period.week S Shubham__Ranjan Follow Improve Article Tags : Technical Scripter Python Python-pandas Pandas scalar-period Practice Tags : python Similar Reads 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.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.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 Period.weekofyear attribute return an integer value which is the week number of 2 min read Python | Pandas Period.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 Period.year attribute return an integer value representing the year the given p 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 Like