Thursday, September 4, 2025
HomeLanguagesPython | Pandas Period.end_time

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 the given period object.

Syntax : Period.end_time

Parameters : None

Return : Timestamp object

Example #1: Use Period.end_time attribute to find the end time for the given Period object.




# importing pandas as pd
import pandas as pd
  
# Create the Period object
prd = pd.Period(freq ='D', year = 2001, month = 2, day = 21)
  
# Print the Period object
print(prd)


Output :

Now we will use the Period.end_time attribute to find the end time for prd object.




# return the end time
prd.end_time


Output :

As we can see in the output, the Period.end_time attribute has returned a Timestamp object which contains the date value as well as the end time of the given period.

Example #2: Use Period.end_time attribute to find the end time for the given Period object.




# 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.end_time attribute to find the end time for prd object.




# return the end time
prd.end_time


Output :

As we can see in the output, the Period.end_time attribute has returned a Timestamp object which contains the date value as well as the end time of the given period object.

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32264 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6629 POSTS0 COMMENTS
Nicole Veronica
11799 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11858 POSTS0 COMMENTS
Shaida Kate Naidoo
6749 POSTS0 COMMENTS
Ted Musemwa
7025 POSTS0 COMMENTS
Thapelo Manthata
6698 POSTS0 COMMENTS
Umr Jansen
6716 POSTS0 COMMENTS