Saturday, October 18, 2025
HomeLanguagesPython | Pandas Timestamp.hour

Python | Pandas Timestamp.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 Timestamp.hour attribute return the value of the hour for the given Timestamp object.

Syntax : Timestamp.hour

Parameters : None

Return : hour

Example #1: Use Timestamp.hour attribute to find out the hour value in the given Timestamp object.




# importing pandas as pd
import pandas as pd
  
# Create the Timestamp object
ts = pd.Timestamp(2017, 2, 15, 12)
  
# Print the Timestamp object
print(ts)


Output :

Now we will use the Timestamp.hour attribute to find out hour value in the given Timestamp object.




# return the hour value
ts.hour


Output :

As we can see in the output, the Timestamp.hour attribute has returned 12 as the hour value for the given Timestamp object.

 
Example #2: Use Timestamp.hour attribute to find out the hour value in the given Timestamp object.




# importing pandas as pd
import pandas as pd
  
# Create the Timestamp object
ts = pd.Timestamp(year = 2009, month = 10, day = 21,
                     hour = 4, tz = 'Europe/Berlin')
  
# Print the Timestamp object
print(ts)


Output :

Now we will use the Timestamp.hour attribute to find out hour value in the given Timestamp object.




# return the hour value
ts.hour


Output :

As we can see in the output, the Timestamp.hour attribute has returned 4 as the hour value for the given Timestamp object.

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

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS