2

如何使用 xlrd 模块将 Python 日期转换为 Excel 日期?How to convert a python datetime.datetime to excel serial date number建议一个“手动”解决方案,我想知道它是否是最好的方法。

Xlrd 文件建议使用xlrd.xldate_from_date_tuple

>>> import xlrd
>>> xlrd.xldate_from_date_tuple
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: 'module' object has no attribute 'xldate_from_date_tuple'

你能帮忙吗?谢谢。

4

1 回答 1

3

采用xlrd.xldate.xldate_from_date_tuple

于 2013-01-24T18:33:58.697 回答