一、datetime模块介绍
(一)、datetime模块中包含如下类:
类名 | 功能说明 |
---|---|
date | 日期对象,常用的属性有year, month, day |
time | 时间对象 |
datetime | 日期时间对象,常用的属性有hour, minute, second, microsecond |
datetime_CAPI | 日期时间对象C语言接口 |
timedelta | 时间间隔,即两个时间点之间的长度 |
tzinfo | 时区信息对象 |
(二)、datetime模块中包含的常量
常量 | 功能说明 | 用法 | 返回值 |
---|---|---|---|
MAXYEAR | 返回能表示的最大年份 | datetime.MAXYEAR | 9999 |
MINYEAR | 返回能表示的最小年份 | datetime.MINYEAR | 1 |
二、date类
(一)、date对象构成
1、date对象由year
年份、month
月份及day
日期三部分构成:
date(year,month,day)
2、 通过year
, month
, day
三个数据描述符可以进行访问:
1 >>> import datetime
2 >>> datetime.date.today()
3 datetime.date(2019, 8, 21)
4 >>> a = datetime.date.today()
5 >>> a
6 datetime.date(2019, 8, 21)
7 >>> a.year
8 2019
9 >>> a.month
10 8
11 >>> a.day
12 21
3、当然,你也可以用__getattribute__(...)
方法获得上述值:
1 >>> a.__getattribute__('year') 2 2019 3 >>> a.__getattribute__('month') 4 8 5 >>> a.__getattribute__('day') 6 21
(二)、date对象中包含的方法与属性
1、用于日期比较大小的方法
方法名 | 方法说明 | 用法 |
---|---|---|
__eq__(…) | 等于(x==y) | x.__eq__(y) |
__ge__(…) | 大于等于(x>=y) | x.__ge__(y) |
__gt__(…) | 大于(x>y) | x.__gt__(y) |
__le__(…) | 小于等于(x<=y) | x.__le__(y) |
__lt__(…) | 小于(x | x.__lt__(y) |
__ne__(…) | 不等于(x!=y) | x.__ne__(y) |
以上方法的返回值为TrueFalse
示例如下:
d1 = datetime.date(2019, 8, 21) d2 = datetime.date(2019, 8, 20) print('d1.__eq__(d2)>>>{} d1.__ge__(d2)>>>{}'.format(d1.__eq__(d2),d1.__ge__(d2))) 输出: d1.__eq__(d2)>>>False d1.__ge__(d2)>>>True
2、获得二个日期相差多少天
使用__sub__(...)
和__rsub__(...)
方法,其实二个方法差不太多,一个是正向操作,一个是反向操作:
方法名 | 方法说明 | 用法 |
---|---|---|
__sub__(…) | x - y | x.__sub__(y) |
__rsub__(…) | y - x | x.__rsub__(y) |
示例如下:
1 >>> a 2 datetime.date(2019, 8, 22) 3 >>> b 4 datetime.date(2019, 8, 15) 5 >>> a.__sub__(b) 6 datetime.timedelta(days=7) 7 >>> a.__rsub__(b) 8 datetime.timedelta(days=-7) 9 >>>
3、ISO标准化日期
如果想要让所使用的日期符合ISO标准,那么使用如下三个方法:
1).* isocalendar(...)
*:返回一个包含三个值的元组,三个值依次为:year
年份,week number
周数,weekday
星期数(周一为1…周日为7):
示例如下
a = datetime.date(2019, 8, 21) date_iso = a.isocalendar() print('date_iso-->', date_iso) print(date_iso[0], date_iso[1], date_iso[2]) 输出: date_iso--> (2019, 34, 3) 2019 34 3
2). isoformat(...)
: 返回符合ISO 8601标准 (YYYY-MM-DD
) 的日期字符串;
示例如下
1 >>> a=datetime.date(2019, 8, 22) 2 >>> a.isoformat() 3 '2019-08-22' 4 >>>
3). isoweekday(...)
: 返回符合ISO标准的指定日期所在的星期数(周一为1…周日为7)
示例如下:
1 a=datetime.date(2019,8,22) 2 >>> a.isoformat() 3 '2019-08-22' 4 >>> a.isoweekday() 5 4
4).与isoweekday(...)
相似的还有一个weekday(...)
方法,只不过是weekday(...)
方法返回的周一为 0, 周日为 6
示例如下:
1 >>> a.weekday() 2 3
4、其他方法与属性
1). timetuple(...)
:该方法为了兼容time.localtime(...)
返回一个类型为time.struct_time
的数组,但有关时间的部分元素值为0:
1 >>> a=datetime.date(2019, 8, 21) 2 >>> a.timetuple() 3 time.struct_time(tm_year=2019, tm_mon=8, tm_mday=21, tm_hour=0, tm_min=0, tm_sec=0, tm_wday=2, tm_yday=233, tm_isdst=-1) 4 >>> a.timetuple().tm_year 5 2019 6 >>> a.timetuple().tm_mon 7 8 8 >>> a.timetuple().tm_mday 9 21
2).toordinal(...)
: 返回公元公历开始到现在的天数。公元1年1月1日为1
1 >>> a=datetime.date(2019, 8, 21)
2 >>> a.toordinal()
3 737292
4 >>> a.toordinal()/365
5 2019.978082191781
6 >>>
3). replace(...)
:返回一个替换指定日期字段的新date对象。参数3个可选参数,分别为year,month,day。注意替换是产生新对象,不影响原date对象。
>>> a=datetime.date(2019, 8, 21) >>> b = a.replace(2019,2,22) >>> a datetime.date(2019, 8, 21) >>> b datetime.date(2019, 2, 22) >>>
4).resolution
:date对象表示日期的最小单位。这里是天。
1 >>> datetime.date.resolution 2 datetime.timedelta(days=1)
5).fromordinal(...)
:将Gregorian日历时间转换为date对象;Gregorian Calendar :一种日历表示方法,类似于我国的农历,西方国家使用比较多。
1 >>> a=datetime.date(2019, 8, 21) 2 >>> b = a.toordinal() 3 >>> b 4 737292 5 >>> datetime.date.fromordinal(b) 6 datetime.date(2019, 8, 21) 7 >>>
6).fromtimestamp(...)
:根据给定的时间戮,返回一个date对象
1 >>> import time 2 >>> tm=time.time() 3 >>> tm 4 1566373157.792394 5 >>> datetime.date.fromtimestamp(tm) 6 datetime.date(2019, 8, 21) 7 >>>
7).today(...)
:返回当前日期
1 >>> datetime.date.today() 2 datetime.date(2019, 8, 21)
8).max
: date类能表示的最大的年、月、日的数值
1 >>> datetime.date.max 2 datetime.date(9999, 12, 31) 3 >>>
9).min
: date类能表示的最小的年、月、日的数值
1 >>> datetime.date.min 2 datetime.date(1, 1, 1) 3 >>>
(三)、日期的字符串输出
1、如果你想将日期对象转化为字符串对象的话,可以用到__format__(...)
方法以指定格式进行日期输出:
1 >>> a=datetime.date(2019, 8, 21) 2 >>> a.__format__('%Y-%m-%d') 3 '2019-08-21' 4 >>> a.__format__('%y/%m/%d') 5 '19/08/21' 6 >>>
与此方法等价的方法为strftime(...)
1 >>> a.strftime("%Y%m%d") 2 '20190821'
关于格式化字符串的相关内容,请查阅本文最后的:附录:python中时间日期格式化符号
2、如果只是相简单的获得日期的字符串,则使用__str__(...)
1 >>> a.__str__() 2 '2019-08-21'
3、如果想要获得ctime样式的格式请使用ctime(...)
:
1 >>> a.ctime() 2 'Wed Aug 21 00:00:00 2019'
三、time类
(一)、time类的数据构成
time
类由hour
小时、minute
分钟、second
秒、microsecond
毫秒和tzinfo
五部分组成
time([hour[, minute[, second[, microsecond[, tzinfo]]]]])
相应的,time类中就有上述五个变量来存储应该的值:
1 >>> a=datetime.time(15,52,25,599) 2 >>> a 3 datetime.time(15, 52, 25, 599) 4 >>> a.hour 5 15 6 >>> a.minute 7 52 8 >>> a.second 9 25 10 >>> a.microsecond 11 599 12 >>> a.tzinfo 13 >>>
与date
类一样,time
类也包含__getattribute__(...)
方法可以读取相关属性:
1 >>> a.__getattribute__('hour')
2 15
3 >>> a.__getattribute__('minute')
4 52
5 >>> a.__getattribute__('second')
6 25
(二)、time类中的方法和属性
1、比较时间大小
相关方法包括:__eq__(...)
, __ge__(...)
, __gt__(...)
, __le__(...)
, __lt__(...)
, __ne__(...)
这里的方法与date
类中定义的方法大同小异,使用方法与一样,这里就不过多介绍了,示例如下:
1 >>> a = datetime.time(12,20,59,899) 2 >>> b = datetime.time(11,20,59,889) 3 >>> a.__eq__(b) 4 False 5 >>> a.__ne__(b) 6 True 7 >>> a.__ge__(b) 8 True 9 >>> a.__gt__(b) 10 True 11 >>> a.__le__(b) 12 False 13 >>> a.__lt__(b) 14 False
2、__nonzero__(...)
判断时间对象是否非零,返回值为True/False:
>>> a = datetime.time(12,20,59,899) >>> a.__nonzero__() True
3、其他属性
1)、max
:最大的时间表示数值:
1 >>> datetime.time.max 2 datetime.time(23, 59, 59, 999999)
2)、min
:最小的时间表示数值
1 >>> datetime.time.min 2 datetime.time(0, 0)
3)、resolution
:时间间隔单位为分钟
1 >>> datetime.time.resolution 2 datetime.timedelta(0, 0, 1)
(三)、时间的字符串输出
1、如果你想将时间对象转化为字符串对象的话,可以用到__format__(...)
方法以指定格式进行时间输出:
1 >>> a = datetime.time(12,20,59,899) 2 >>> a.__format__('%H:%M:%S') 3 '12:20:59'
与此方法等价的方法为strftime(...)
1 >>> a = datetime.time(12,20,59,899) 2 >>> a.strftime('%H:%M:%S') 3 '12:20:59'
关于格式化字符串的相关内容,请查阅本文最后的:附录:python中时间日期格式化符号
2、ISO标准输出
如果要使输出的时间字符符合ISO标准,请使用isoformat(...)
:
1 >>> a = datetime.time(12,20,59,899) 2 >>> a.isoformat() 3 '12:20:59.000899'
3、如果只是相简单的获得时间的字符串,则使用__str__(...)
>>> a = datetime.time(12,20,59,899) >>> a.__str__() '12:20:59.000899'
四、datetime类
(一)、datetime类的数据构成
datetime
类其实是可以看做是date
类和time
类的合体,其大部分的方法和属性都继承于这二个类,相关的操作方法请参阅,本文上面关于二个类的介绍。其数据构成也是由这二个类所有的属性所组成的。
datetime(year, month, day[, hour[, minute[, second[, microsecond[,tzinfo]]]]])
(二)、专属于datetime的方法和属性
1、 date(…):返回datetime对象的日期部分:
2、time(…):返回datetime对象的时间部分:
1 1 >>> a=datetime.datetime.now() 2 2 >>> a 3 3 datetime.datetime(2019, 8, 21, 16, 0, 8, 432600) 4 4 >>> a.date() 5 5 datetime.date(2019, 8, 21) 6 6 >>> a.time() 7 7 datetime.time(16, 0, 8, 432600) 8 8 >>>
3、utctimetuple(…):返回UTC时间元组:
1 >>> a=datetime.datetime.now() 2 >>> a 3 datetime.datetime(2019, 8, 21, 16, 2, 3, 489601) 4 >>> a.utctimetuple() 5 time.struct_time(tm_year=2019, tm_mon=8, tm_mday=21, tm_hour=16, tm_min=2, tm_sec=3, tm_wday=2, tm_yday=233, tm_isdst=0) 6 >>>
4、combine(…):将一个date对象和一个time对象合并生成一个datetime对象:
>>> a=datetime.datetime.now() >>> a datetime.datetime(2019, 8, 21, 16, 3, 50, 473403) >>> b=a.date() >>> c=a.time() >>> datetime.datetime.combine(b,c) datetime.datetime(2019, 8, 21, 16, 3, 50, 473403) >>>
5、now(…):返回当前日期时间的datetime对象:
>>> a=datetime.datetime.now() >>> a datetime.datetime(2019, 8, 21, 16, 3, 50, 473403)
6、utcnow(…):返回当前日期时间的UTC datetime对象:
>>> a = datetime.datetime.utcnow() >>> a datetime.datetime(2019, 8, 21, 8, 5, 0, 192654) >>>
7、strptime(…):根据string, format 2个参数,返回一个对应的datetime对象:
1 >>> a=datetime.datetime.strptime('2019-8-12 16:05','%Y-%m-%d %H:%M') 2 >>> a 3 datetime.datetime(2019, 8, 12, 16, 5)
8、utcfromtimestamp(…):UTC时间戳的datetime对象,时间戳值为time.time():
1 >>> datetime.datetime.utcfromtimestamp(time.time()) 2 datetime.datetime(2019, 8, 21, 8, 7, 39, 865078) 3 >>>
五、timedelta类
一个timedelta对象表示一个时间长度,两个日期或者时间的差值
class datetime.timedelta(days=0,seconds=0,microseconds=0,milliseconds=0,minutes=0,hours=0,weeks=0)
所有的参数都是可选的,默认值为0,参数可以是整数或者浮点数,既可以是整数也可以是负数。
虽然说参数可以传递的单位很多,但是python内部实现只存储了days,seconds和microseconds三种单位,所有其他的单位在计算时都会转换成相应的三种单位:
1 millisecond = 1000 microseconds
1 minute = 60 seconds
1 hour = 3600 seconds
1 week = 7 days
此类中包含如下属性:
1、days
:天数
2、microseconds
:微秒数(>=0 并且 <1秒)
3、seconds
:秒数(>=0 并且 <1天)
1 >>> now=datetime.datetime.now() 2 >>> now 3 datetime.datetime(2019, 8, 21, 16, 18, 58, 864449) 4 >>> delta=datetime.timedelta(day=1) 5 >>> delta=datetime.timedelta(days=1) 6 >>> delta 7 datetime.timedelta(days=1) 8 >>> newtime=now+delta 9 >>> newtime 10 datetime.datetime(2019, 8, 22, 16, 18, 58, 864449)
2、以下是打印一天前的时间
1 >>> newtime=now-delta 2 >>> newtime 3 datetime.datetime(2019, 8, 20, 16, 18, 58, 864449) 4 >>>
六、日期计算实操
1.获取当前日期时间:
1 >>> now=datetime.datetime.now() 2 >>> now 3 datetime.datetime(2019, 8, 21, 16, 24, 42, 123371) 4 >>> today=datetime.date.today() 5 >>> today 6 datetime.date(2019, 8, 21) 7 >>> now.date() 8 datetime.date(2019, 8, 21) 9 >>> now.time() 10 datetime.time(16, 24, 42, 123371) 11 >>>
2.获取上个月第一天和最后一天的日期:
1 >>> today = datetime.date.today() 2 >>> today 3 datetime.date(2019, 8, 21) 4 >>> mlast_day = datetime.date(today.year, today.month, 1) - datetime.timedelta(days=1) 5 >>> mlast_day 6 datetime.date(2019, 7, 31) 7 >>> mfirst_day = datetime.date(mlast_day.year, mlast_day.month, 1) 8 >>> mfirst_day 9 datetime.date(2019, 7, 1) 10 >>>
3.获取时间差
时间差单位为秒
>>> start_time = datetime.datetime.now() >>> end_time = datetime.datetime.now() >>> (end_time-start_time).seconds 24 >>>
差值不只是可以查看相差多少秒,还可以查看天(days), 秒(seconds), 微秒(microseconds).
4.计算当前时间向后8个小时的时间
1 >>> d1 = datetime.datetime.now() 2 >>> d2=d1+datetime.timedelta(hours=8) 3 >>> d2 4 datetime.datetime(2019, 8, 22, 0, 31, 32, 967891) 5 >>>
可以计算: 天(days), 小时(hours), 分钟(minutes), 秒(seconds), 微秒(microseconds).
5.计算上周一和周日的日期
1 >>> today = datetime.date.today() 2 >>> today 3 datetime.date(2019, 8, 21) 4 >>> today_weekday = today.isoweekday() 5 >>> today_weekday 6 3 7 >>> last_sunday = today - datetime.timedelta(days=today_weekday) 8 >>> last_sunday 9 datetime.date(2019, 8, 18) 10 >>> last_monday = last_sunday - datetime.timedelta(days=6) 11 >>> last_monday 12 datetime.date(2019, 8, 12) 13 >>>
6.计算指定日期当月最后一天的日期和本月天数
>>> date = datetime.date(2019,8,21) >>> def eomonth(date_object): ... if date_object.month == 12: ... next_month_first_date = datetime.date(date_object.year+1,1,1) ... else: ... next_month_first_date = datetime.date(date_object.year, date_object.month+1, 1) ... return next_month_first_date - datetime.timedelta(1) ... >>> eomonth(date) datetime.date(2019, 8, 31) >>> eomonth(date).day 31
7.计算指定日期下个月当天的日期
这里要调用上一项中的函数eomonth(...)
1 >>> date = datetime.date(2017,12,20) 2 >>> def edate(date_object): 3 ... if date_object.month == 12: 4 ... next_month_date = datetime.date(date_object.year+1, 1,date_object.day) 5 ... else: 6 ... next_month_first_day = datetime.date(date_object.year,date_object.month+1,1) 7 ... if date_object.day > eomonth(last_month_first_day).day: 8 ... next_month_date = datetime.date(date_object.year,date_object.month+1,eomonth(last_month_first_day).day) 9 ... else: 10 ... next_month_date = datetime.date(date_object.year, date_object.month+1, date_object.day) 11 ... return next_month_date 12 ... 13 >>> edate(date) 14 datetime.date(2018, 1, 20)
8.获得本周一至今天的时间段并获得上周对应同一时间段
1 >>> today = datetime.date.today() 2 >>> this_monday = today - datetime.timedelta(today.isoweekday()-1) 3 >>> last_monday = this_monday - datetime.timedelta(7) 4 >>> last_weekday = today -datetime.timedelta(7) 5 >>> this_monday 6 datetime.date(2019, 8, 19) 7 >>> today 8 datetime.date(2019, 8, 21) 9 >>> last_monday 10 datetime.date(2019, 8, 12) 11 >>> last_weekday 12 datetime.date(2019, 8, 14) 13 >>>
附录:python中时间日期格式化符号:
符号 | 说明 |
---|---|
%y |
两位数的年份表示(00-99) |
%Y |
四位数的年份表示(000-9999) |
%m |
月份(01-12) |
%d |
月内中的一天(0-31) |
%H |
24小时制小时数(0-23) |
%I |
12小时制小时数(01-12) |
%M |
分钟数(00=59) |
%S |
秒(00-59) |
%a |
本地简化星期名称 |
%A |
本地完整星期名称 |
%b |
本地简化的月份名称 |
%B |
本地完整的月份名称 |
%c |
本地相应的日期表示和时间表示 |
%j |
年内的一天(001-366) |
%p |
本地A.M.或P.M.的等价符 |
%U |
一年中的星期数(00-53)星期天为星期的开始 |
%w |
星期(0-6),星期天为星期的开始 |
%W |
一年中的星期数(00-53)星期一为星期的开始 |
%x |
本地相应的日期表示 |
%X |
本地相应的时间表示 |
%Z |
当前时区的名称 |
%% |
%号本身 |
q