如何使用 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'
你能帮忙吗?谢谢。