Python:时间日期操作arrow库,如何用一行代码获取上个月是几月
https://blog.csdn.net/lantian_123/article/details/101518348
使用datetime库实现上个月,特别麻烦,需要多行代码 ,
用 datetime.replace 方法将 month-1 ,咋看起来没问题,实际上这是有 bug 的,month 的范围只能是 1-12
arrow 库 中方法 a.shiift(months=-1) a.shiift(years=-1)
>>> import datetime # 1. 获取「今天」 >>> today = datetime.date.today() # 2. 获取当前月的第一天 >>> first = today.replace(day=1) # 3. 减一天,得到上个月的最后一天 >>> last_month = first - datetime.timedelta(days=1) # 4. 格式化成指定形式 >>> print(last_month.strftime("%Y%m")) 201807 >>>
arrow 时间日期库 一个加强版的datetime对象
安装
$ pip install arrow
>>> a = arrow.now() # 当前本地时间 >>> a <Arrow [2018-08-24T07:09:03.468562+08:00]> >>> arrow.utcnow() # 当前utc时间 <Arrow [2018-08-23T23:11:50.147585+00:00]>
>>> a.timestamp
1535066234
shift
shift 有点像游标卡尺,可以左右两边进行加减移位操作,加减的对象可以是年月日时分秒和星期。再回到文章开始地方,想获取当前月的前一个月,你可以这样写:
>>> a.shift(months=-1) <Arrow [2018-07-24T07:09:03.468562+08:00]> >>> a.shift(months=-1).format("YYYYMM") '201807' >>>
>>> a.shift(years=-2)
<Arrow [2016-08-24T07:09:03.468562+08:00]>
>>>
>>> a.shift(hours=1)
<Arrow [2018-08-24T08:09:03.468562+08:00]>
>>> a.shift(weeks=1)
<Arrow [2018-08-31T07:09:03.468562+08:00]>
Arrow 的不足
关于 get 方法,看似强大,使用起来灵活,感觉什么参数都能接受,但是也带来了一些问题,甚至是 bug。比如
>>> arrow.get("2018-7-11")
<Arrow [2018-01-01T00:00:00+00:00]>
期望的值应该是 2018-07-11, 但是它并没有提示错误,而正确的做法是要指定格式,因为你传的字符串不是标准的日期格式。
>>> arrow.get("2018-7-11", "YYYY-M-DD")
<Arrow [2018-07-11T00:00:00+00:00]>