如何转换以下日期时间格式

问题描述 投票:0回答:1

我必须将1/1/2016 0:00转换为2016-01-01 00:00:00

目前使用的方法:

datetime.strptime((1/1/2016 0:00, "%m %d %Y %I:%M")

错误:

ValueError: time data '1/1/2016 0:00' does not match format '%m %d %Y %I:%M'
python-3.x datetime
1个回答
0
投票

在Python 3.6中,你可以这样做:

import datetime

datetime.datetime.strptime('1/1/2016 0:00', "%m/%d/%Y %H:%M").strftime('%Y-%m-%d %H:%M:%S')
© www.soinside.com 2019 - 2024. All rights reserved.