简体   繁体   中英

Python: How to change a UTC timestamp from mm/dd/yyyy hh:mm:ss AM to dd/mm/yyyy hh:mm:ss AM

I am trying to change the format of a UTC timestamp in a csv file but nothing seems to be working. It keeps saying that there is a ValueError does not match format '%m/%d/%Y %I:%M:%S %p' Below there is an example of the CSV column

Example of CSV column

df[' UTC Event Timestamp'] = df[' UTC Event Timestamp'].astype(str)
string_col = str(df)
string_col.strip()

datetime.strptime(string_col, '%m/%d/%Y %I:%M:%S %p')
datetime.strptime(string_col, '%m/%d/%Y %I:%M:%S %p').strftime('%d/%m/%Y %I:%M:%S %p')

print(string_col)
df['UTC Event Timestamp'] = pd.to_datetime(df['UTC Event Timestamp'])
df['UTC Event Timestamp'] = df['UTC Event Timestamp'].apply(lambda x: x.strftime('%d/%m/%Y %I:%M:%S %p'))

You can use

df['string_col'].apply(lambda row: datetime.strptime(row, '%m/%d/%Y %I:%M:%S %p').strftime('%d/%m/%Y %I:%M:%S %p'))

to convert the column in to datetime format.

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