How to remove the timezone of a date

1 min

You might end up in a situation in which you cannot merge two Dataframes because of a timezone issue on dates.

Here is how to remove the timezone with .replace().

# we only import Timestamp for the example
from pandas import Timestamp

# Here we remove the timezone to the date
Timestamp('2022-01-20 11:49:03.377000+0000', tz='UTC').replace(tzinfo=None)
How to remove the timezone to a date

Here you are! You now know how to remove the timezone to a date.

More on fundamentals

If you want to know more about Python fundamentals without headaches... check out the other articles I wrote by clicking just here:

Fundamentals - The Python You Need
We gathered the only Python essentials that you will probably ever need.