I would like to remove the +00:00
from the timestamp below. I used the code below to remove the T and Z from the timestamp but the dtype is still datetime64[ns, UTC]
and ideally I would like to convert it to datetime64[ns]
df['Timestamp_column'].dt.tz_localize(None)
Timestamp_column before transformation:
2020-07-10T14:12:39.000Z
Output:
2020-07-10 14:12:39+00:00