Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 python 模块 xlsx2csv.py 将一堆 .xlsx 文件转换为 .csv 文件。我注意到一些日期字段被转换为序列号。
For example : 41421 41422 41423 41424 41425
谁能建议我如何使用任何命令将这些数字转换为 Unix 服务器本身中的正确格式(无需将它们带到 Windows 桌面并进行转换)?
这是一个纯粹的猜测,我认为您必须查看 python 模块使用的转换方案,然后对其进行解码,因为您使用了 python 模块 xlsx2csv.py
不太确定您在寻找什么,但也许这会为您指明正确的方向。
Excel 日期是自 1900 年 1 月 1 日纪元以来的天数。
Unix 日期是自 1970 年 1 月 1 日纪元以来的秒数。
转换的算术应该是微不足道的。