转换日期时间对象

Posted

技术标签:

【中文标题】转换日期时间对象【英文标题】:converting a datetime object 【发布时间】:2015-02-26 19:16:41 【问题描述】:

我有一个包含日期的 Excel 表格。

通过以下内容,我将它们转换为日期时间对象:

def excel_time_to_string(xltimeinput):
        try:
            retVal = xlrd.xldate.xldate_as_datetime(xltimeinput, wb.datemode)
        except ValueError:
            print('You passed in an argument in that can not be translated to a datetime.')
            print('Will return original value and carry on')
            retVal = xltimeinput
        return retVal

我定义包含日期的列并在这些单元格上使用该定义:

date_cols = [16, 18, 29, 42, 43]

    headerrow = wb.sheet_by_index(0).row_values(0)
    wr.writerow(headerrow)

    for rownum in xrange(1,wb.sheet_by_index(0).nrows):
        # Get the cell values and then convert the relevant ones before writing
        cell_values = wb.sheet_by_index(0).row_values(rownum)
        for col in date_cols:
            cell_values[col] = excel_time_to_string(cell_values[col])
        wr.writerow(cell_values)

到目前为止一切顺利,我在我的 csv 中得到了正确的对象: 2008-09-30 00:00:00

但是,我需要其他格式:%d.%m.%Y

我是否正确地认为我必须在 for 循环中而不是在 def 中进行“转换”?

【问题讨论】:

所以你有一个日期时间对象,你需要'%d.%m.%Y'? datetime.now().strftime('%d.%m.%Y') 【参考方案1】:

我不熟悉 xlrd,但据我所知,您使用的函数 (xlrd.xldate.xldate_as_datetime) 返回一个 python datetime.datetime 对象。

datetime.datetime 对象具有特定格式(因此,retVal 具有特定格式),但您可以使用 datetime.strftime() 方法更改它。

>>>import datetime
>>>x = datetime.today()
>>>print(x)
2015-02-26 11:31:31.432000
>>>x.strftime('%d.%m.%Y')
'26.02.2015'

您可以在函数中的 retVal 上直接进行此转换,例如

retVal = retVal.strftime('desired format')

在这里阅读更多: https://docs.python.org/2/library/datetime.html#strftime-strptime-behavior

【讨论】:

以上是关于转换日期时间对象的主要内容,如果未能解决你的问题,请参考以下文章

转换日期时间对象

JavaScript 之日起对象(转)

如何将日期时间对象转换为毫秒

谈谈javascript中的日期Date对象

在具有正确日期的python中转换和计算日期时间对象的时区

如何将日期格式QQ-YYYY转换为日期时间对象[重复]