Friday, September 19, 2025
HomeLanguagesPython | Pandas Period.second

Python | Pandas Period.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 Period.second attribute returns an integer value which represents the value of seconds in the given Period object.
 

Syntax : Period.second
Parameters : None
Return : seconds 
 

Example #1: Use Period.second attribute to find the value of seconds present in 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.second attribute to find the number of second in the given period object.
 

Python3




# return the number of seconds
prd.second


Output : 
 

As we can see in the output, the Period.second attribute has returned 24 indicating that the number of seconds in prd object is 24.
Example #2: Use Period.second attribute to find the value of seconds present in 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 Period object
print(prd)


Output : 
 

Now we will use the Period.second attribute to find the number of second in the given period object.
 

Python3




# return the number of seconds
prd.second


Output : 
 

As we can see in the output, the Period.second attribute has returned 17 indicating that the number of seconds in prd object is 17.
 

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

Most Popular

Dominic
32301 POSTS0 COMMENTS
Milvus
84 POSTS0 COMMENTS
Nango Kala
6666 POSTS0 COMMENTS
Nicole Veronica
11840 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11898 POSTS0 COMMENTS
Shaida Kate Naidoo
6781 POSTS0 COMMENTS
Ted Musemwa
7056 POSTS0 COMMENTS
Thapelo Manthata
6739 POSTS0 COMMENTS
Umr Jansen
6744 POSTS0 COMMENTS