亲宝软件园·资讯

展开

python 输出上个月的月末日期 python 输出上个月的月末日期实例

luoganttcc 人气:0
想了解python 输出上个月的月末日期实例的相关内容吗,luoganttcc在本文为您仔细讲解python 输出上个月的月末日期的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:python,日期,上个月,下面大家一起来学习吧。

如下所示:

import dateutil
def before_month_lastday(ti):
  today=dateutil.parser.parse(str(ti))
  first = datetime.date(day=1, month=today.month, year=today.year)
  lastMonth = first - datetime.timedelta(days=1)
  cc=str(lastMonth.year)+str(lastMonth.month)+str(lastMonth.day)
  return int(cc)
print(before_month_lastday(20171011))
2017930

以上这篇python 输出上个月的月末日期实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。

加载全部内容

相关教程
猜你喜欢
用户评论