python进行日期年月日的计算

Posted 乐乐熊小妹

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python进行日期年月日的计算相关的知识,希望对你有一定的参考价值。

import datetime
from dateutil.relativedelta import relativedelta

class DateFormat:
    """
    通过"year=9&day=-1",计算得到当前日期偏移对应的年、天之后的日期YYYY-MM-DD;
    """

    def __init__(self,birthday):
        self.birthday = "year=9&day=-1"

    def date_format(self):
        """

        :return: 返回处理后的日期
        """
        now_time = datetime.datetime.now()

        year,day = self.birthday.replace("year=","").replace("day=","").split("&")
        if year=="":
            year=0
        if day=="":
            day=0

        cal_year_day_time = now_time+relativedelta(years=int(year),days=int(day))

        return cal_year_day_time
        
        print(type(now_time))
        print(cal_year_day_time)
        print(datetime.datetime.strptime("2012-02-29",\'%Y-%m-%d\')+relativedelta(years=10),"9999999999999")

DateFormat("").date_format()

 

以上是关于python进行日期年月日的计算的主要内容,如果未能解决你的问题,请参考以下文章

常用python日期日志获取内容循环的代码片段

python date,datetime 和time的区别

根据年月日求当前日期是星期几

根据年月日求当前日期是星期几

根据年月日求当前日期是星期几

给定年月日 怎样用C语言编程计算2个日期之间的时间天数