简体   繁体   中英

Convert column of serial dates (yyyy-mm-dd) to UK date format (Pythonic way)

I am trying to convert a date of the format yyyy-mm-dd to dd/mm/yyyy and readable by Excel. I have tried:

df['Date'] = df['Date'].dt.strftime('%d/%m/%Y')

But get the following error:

AttributeError: Can only use .dt accessor with datetimelike values

Thanks!

首先,您必须将列转换为datetime

df['Date'] = pd.to_datetime(df['Date']).dt.strftime('%d/%m/%Y')

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