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

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

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

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

import datetimedef 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模块进行解析。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5143250.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-18
下一篇 2022-11-18

发表评论

登录后才能评论

评论列表(0条)

保存