简体   繁体   中英

Convert Date to pandas from ISO 8601 format

I have a date it look like this

2021-12-14T20:32:34Z

how can i convert it to someting like this

2021-12-14 20:32

If you want to do this using Pandas, you can use pandas to convert iso date to datetime object then strftime to convert timestamp into string format

import pandas as pd
import datetime

iso_date = '2021-12-14T20:32:34Z'
fmt = '%Y-%m-%d %H:%M'
pd.to_datetime(iso_date).strftime(fmt)

to apply it to a series of dates of DataFrame column you can replace iso_date with the series of dates and use this code

pd.to_datetime(iso_date).dt.strftime(fmt)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM