Python | Pandas Period.day 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.day attribute returns the day of the month for the given Period object. It returns an integer value. Syntax : Period.day Parameters : None Return : day Example #1: Use Period.day attribute to find the day in the given Period object. Python3 # importing pandas as pd import pandas as pd # Create the Period object prd = pd.Period(freq ='D', year = 2001, month = 1, day = 21) # Print the Period object print(prd) Output : Now we will use the Period.day attribute to find the day of the month in the given object. Python3 # return the day value prd.day Output : As we can see in the output, the Period.day attribute has returned 21 which is the value of day in the given period object. Example #2: Use Period.day attribute to find the day in the given Period object. Python3 # importing pandas as pd import pandas as pd # Create the Period object prd = pd.Period(freq ='Q', year = 2006, quarter = 1) # Print the object print(prd) Output : Now we will use the Period.day attribute to find the day of the month in the given object. Python3 # return the day value prd.day Output : As we can see in the output, the Period.day attribute has returned 31 which is the value of day in the given period object. Comment More infoAdvertise with us Next Article Python | Pandas Period.daysinmonth S Shubham__Ranjan Follow Improve Article Tags : Technical Scripter Python Python-pandas Pandas scalar-period Practice Tags : python Similar Reads Python | Pandas PeriodIndex.day 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.day attribute returns an Index object containing the value of the da 2 min read Python | Pandas Period.dayofyear 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.dayofyear attribute returns the day of the year for the given Period obj 2 min read Python | Pandas Period.dayofweek 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.dayofweek attribute returns the day of the week for the given Period obj 2 min read Python | Pandas Period.daysinmonth 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.daysinmonth attribute returns the number of days in the month present in 2 min read Python | Pandas Period.hour 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.hour attribute returns an integer value indicating the value of the hour 2 min read Python | Pandas Period.asfreq 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.asfreq() function is used to convert Period to desired frequency, either 2 min read Like