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 中读取 Excel 格式的日期?
我正在从 .XLS(excel)文件中读取值。在读取日期字段时,我得到一个浮点值,如 40374。我需要将此浮点值转换为日期。请帮忙。
提前致谢!!!!
Excel 中的日期由自 1900 年 1 月 1 日以来的天数表示。所以 40374 是 1900 年 1 月 1 日或 2010 年 7 月 15 日之后的 40,374 天
另外我相信,如果小数点后有任何内容,这代表一天的一小部分。
所以 40374.0 是 2010 年 7 月 15 日午夜,0.5 是中午,0.75 是下午 6 点,等等。