python读取excel文件中日期变为浮点数

问题描述:
用python把excel里面的数据导入数据库,其中excel数据包含文本,数值,日期。用xlrd模块读取excel数据时,python读取日期,显示为浮点数,导致入库失败。

from xlrd import xldate_as_tuple
import datetime

def handle_date(date):
    print(date)
    tuple = xldate_as_tuple(date, 0)
    print(tuple)
    excel_datetime=datetime.datetime(*tuple)
    print(excel_datetime)
    return excel_datetime

date = 43646.6559375     # 在excel显示为 2019/6/30  15:44:33
handle_date(date)
#输出结果
43646.6559375

(2019, 6, 30, 15, 44, 33)

2019-06-30 15:44:33

再次更新~~~~ 发现貌似更简单的方法

python读取excel文件中日期变为浮点数_第1张图片

你可能感兴趣的:(遇到问题)