Python | Pandas Period.start_time 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.start_time attribute returns a Timestamp object containing the start time of the given period object. Syntax : Period.start_time Parameters : None Return : Timestamp object Example #1: Use Period.start_time attribute to find the start time for the given Period object. 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.start_time attribute to find the start time for prd object. Python3 # return the start time prd.start_time Output : As we can see in the output, the Period.start_time attribute has returned a Timestamp object which contains the date value as well as the start time of the given period object. Example #2: Use Period.start_time attribute to find the start time for the given Period object. 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.start_time attribute to find the start time for prd object. Python3 # return the start time prd.start_time Output : As we can see in the output, the Period.start_time attribute has returned a Timestamp object which contains the date value as well as the start time of the given period object. Comment More infoAdvertise with us Next Article Python | Pandas Period.quarter S Shubham__Ranjan Follow Improve Article Tags : Technical Scripter Python Python-pandas Pandas scalar-period Practice Tags : python Similar Reads Python | Pandas PeriodIndex.start_time 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.start_time attribute return a DatetimeIndex object containing the s 2 min read Python | Pandas Period.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 Period.strftime() function returns the string representation of the Period, dep 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 Python | Pandas Period.quarter 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.quarter attribute return an integer value. The returned value represents 2 min read Python | Pandas Period.end_time 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.end_time attribute returns a Timestamp object containing the end time 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 Like