首页 > 编程 > Python > 正文

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

2019-11-25 14:57:20
字体:
来源:转载
供稿:网友

如下所示:

import dateutildef 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 输出上个月的月末日期实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持武林网。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表