excel 日期时间转为小数点后,还原为正常日期时间

import arrow

excel_time = 0.4066087962963
excel_epoch = arrow.get('1899-12-30')

# 将 Excel 时间值转换为日期时间格式
py_date = excel_epoch.shift(days=excel_time).format('HH:mm:ss')

print(py_date)  # 输出转换后的日期时间
# 09:45:31

你可能感兴趣的:(笔记,python,excel,python,开发语言)