在给定日期中添加n个工作日,而忽略python中的假期和周末

我正在尝试将n个(整数)工作日添加到给定的日期,添加日期必须避免假期和周末(工作日中不包括该日期)

回答:

跳过周末很容易做到这一点:

import datetime

def date_by_adding_business_days(from_date, add_days):

business_days_to_add = add_days

current_date = from_date

while business_days_to_add > 0:

current_date += datetime.timedelta(days=1)

weekday = current_date.weekday()

if weekday >= 5: # sunday = 6

continue

business_days_to_add -= 1

return current_date

#demo:

print '10 business days from today:'

print date_by_adding_business_days(datetime.date.today(), 10)

假期的问题在于假期因国家或地区,宗教信仰等的不同而有很大差异。您需要为用例提供一份假期清单/一套,然后以类似的方式跳过它们。一个起点可能是苹果为iCal发布的日历供稿(以ics格式),而在美国的日历供稿则是http://files.apple.com/calendars/US32Holidays.ics。

您可以使用icalendar模块进行解析。

以上是 在给定日期中添加n个工作日,而忽略python中的假期和周末 的全部内容, 来源链接: utcz.com/qa/404332.html

回到顶部