如何计算日期字段中的年,月和日

时间:2016-08-02 10:47:48

标签: python django date

首先我有这个名为first_date的变种

first_date = models.DateField()

我有一个名为recurrence的方法,返回3个整数。

 @property
def recurrence(self):
    return '%dY, %dM, %dD' % (self.year_interval, self.month_interval, self.day_interval)

最后我需要制作采用first_date的方法并从重复方法中添加Ints:

@property
def next_date(self):
    return self.first_date + datetime.timedelta(self.recurrence)

它不起作用,但你们中的任何一个人都知道如果你想添加(1,5,13),那么它会增加1年5 montsh和13天到first_date吗?

0 个答案:

没有答案