在python中将字符串日期转换为日期格式



如何在python中将下面的字符串日期转换为日期格式。

input:
date='15-MARCH-2015'
expected output:
2015-03-15

我尝试使用datetime.strftimedatetime.strptime. 它不接受这种格式。

您可以使用具有正确格式的datetime.strptime

>>> datetime.strptime('15-MARCH-2015','%d-%B-%Y')
datetime.datetime(2015, 3, 15, 0, 0)

阅读有关datetime.strptime和日期格式的更多信息:https://docs.python.org/2/library/datetime.html#strftime-and-strptime-behavior

datetime模块将在这里为您提供帮助。首先使用 strptime 将字符串转换为 datetime 对象,然后使用 strftime 将此对象转换为所需的字符串格式:

from datetime import datetime
datetime.strftime(datetime.strptime('15-MARCH-2015','%d-%B-%Y'),'%Y-%m-%d')

将产生:

'2015-03-15'

请注意字符串格式'%d-%B-%Y'符合您拥有的字符串,并'%Y-%m-%d'您希望它采用的格式。

您可以使用

easy_date来简化它:

import date_converter
converted_date = date_converter.string_to_string('15-MARCH-2015', '%d-%B-%Y', '%Y-%m-%d')

相关内容

  • 没有找到相关文章

最新更新