标签: python date reformatting
我遇到了这个python问题,我有一个月 - 日 - 年格式的日期,我需要将其更改为年 - 月 - 日格式
答案 0 :(得分:1)
>>> import datetime >>> datetime.datetime.strptime("06/03/2015", "%m/%d/%Y").strftime("%Y-%m-%d") '2015-06-03'
这将日期(在本例中为2015年6月3日)作为字符串,并使用strptime将其解析为日期时间对象。然后使用strftime
strptime
strftime