python获取每月第一天和最后一天

python获取每月第一天和最后一天主要使用了datetime模块,其中datetime模块定义了5个类,如下:datetime.date:表示日期的类,常用的属性有year, month, daydatetime.datetime:表示日期时间的类,常用的属性有hour, minute, second, microseconddatetime.time:表示时间的类datetime.timedelta:表示时间间隔,即两个时间点的间隔。在日期上做天days,小时hour,分钟,秒,毫秒,微秒...

阅读全文

python time模块实例详解

python中time模块是我们经常用到的,这个模块主要有三种处理时间的方法1.timestamp时间戳2.时间元祖struct_time3.格式化时间strptime和mktime我们首先来讲讲time()import timeprint(time.time())打印出当前时间戳是一个7位小数的浮点数值1546658552.8154871localtime()会返回一个时间元祖列表print(time.localtime())打印出结果是time.struct_time(tm_year=2019, tm_mon=1, ...

阅读全文