Thursday, January 29, 2026
HomeLanguagesPython | Pandas Timestamp.tz_convert

Python | Pandas Timestamp.tz_convert

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.tz_convert() function convert tz-aware Timestamp to another time zone. The function takes the desired timezone as an input to which we want to convert to.

Syntax :Timestamp.tz_convert()

Parameters :
tz : Time zone for time which Timestamp will be converted to. None will remove timezone holding UTC time.

Return : converted : Timestamp

Example #1: Use Timestamp.tz_convert() function to convert the given tz-aware Timestamp object to ‘Asia/Kolkata’.




# importing pandas as pd
import pandas as pd
  
# Create the Timestamp object
ts = pd.Timestamp(year = 2011,  month = 11, day = 21, 
                  hour = 10, second = 49, tz = 'US/Central') 
  
# Print the Timestamp object
print(ts)


Output :

Now we will use the Timestamp.tz_convert() function to convert the timezone of ts object to ‘Asia/Kolkata’.




# convert to 'Asia / Kolkata'
ts.tz_convert(tz = 'Asia/Kolkata')


Output :

As we can see in the output, the Timestamp.tz_convert() function has converted the timezone of the given object to ‘Asia/Kolkata’.

Example #2: Use Timestamp.tz_convert() function to convert the given tz-aware Timestamp object to ‘US/Pacific’.




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


Output :

Now we will use the Timestamp.tz_convert() function to convert the timezone of ts object to ‘US/Pacific’.




# convert to 'US / Pacific'
ts.tz_convert(tz = 'US/Pacific')


Output :

As we can see in the output, the Timestamp.tz_convert() function has converted the timezone of the given object to ‘US/Pacific’.

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

Most Popular

Dominic
32475 POSTS0 COMMENTS
Milvus
122 POSTS0 COMMENTS
Nango Kala
6848 POSTS0 COMMENTS
Nicole Veronica
11978 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12065 POSTS0 COMMENTS
Shaida Kate Naidoo
6986 POSTS0 COMMENTS
Ted Musemwa
7221 POSTS0 COMMENTS
Thapelo Manthata
6934 POSTS0 COMMENTS
Umr Jansen
6916 POSTS0 COMMENTS