Advertisement

Python时间小插件在上个月的时间段(包括初和月末)以及本月的初和末等

阅读量:

Python时间小插件-上个月初月末-本月初本月末等

包括了上月起始时段、上月结束时段、本月起始阶段、本月结束阶段以及整个时间段内的所有时刻

复制代码
    import datetime
    import calendar
    
    # 上个月初
    def last_time():
    data = (datetime.date.today().replace(day=1) - datetime.timedelta(1)).replace(day=1)
    return datetime.datetime.strptime(str(data), "%Y-%m-%d").strftime("%Y.%m.%d")
    
    # 上个月末
    def last_last():
    data = datetime.date(datetime.date.today().year,datetime.date.today().month,1)-datetime.timedelta(1)
    return datetime.datetime.strptime(str(data), "%Y-%m-%d").strftime("%Y.%m.%d")
    
    # 本月月初
    def now_one():
    data =

全部评论 (0)

还没有任何评论哟~