Python读取excel数据类型处理

时间:2022-09-11 23:11:37

一、python xlrd读取datetime类型数据:https://blog.csdn.net/y1535766478/article/details/78128574

(1)使用xlrd读取出来的时间字段是类似41410.5083333的浮点数,在使用时需要转换成对应的datetime类型,下面代码是转换的方法:

首先需要引入xldate_as_tuple函数

from xlrd import xldate_as_tuple

 

使用方法如下:

#d是从excel中读取出来的浮点数
 
xldate_as_tuple(d,0)
xldate_as_tuple第二个参数有两种取值,0或者1,0是以1900-01-01为基准的日期,而1是1904-01-01为基准的日期。该函数返回的是一个元组,他的值类似:(year, month, day, hour, minute, nearest_second)

 

(2) Python获取当前时间:https://www.cnblogs.com/Jollyxi/p/8251977.html

import datetime
nowTime=datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S')#现在
pastTime = (datetime.datetime.now()-datetime.timedelta(hours=1)).strftime('%Y-%m-%d %H:%M:%S')#过去一小时时间
afterTomorrowTime = (datetime.datetime.now()+datetime.timedelta(days=2)).strftime('%Y-%m-%d %H:%M:%S')#后天
tomorrowTime = (datetime.datetime.now()+datetime.timedelta(days=1)).strftime('%Y-%m-%d %H:%M:%S')#明天
print('\n',nowTime,'\n',pastTime,'\n',afterTomorrowTime,'\n',tomorrowTime)