欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

判断是否为工作日

程序员文章站 2022-05-17 21:37:30
...

判断是否为工作日 方法库
is_workday 返回True为工作日
is_holiday 返回True为休息日

import datetime
from chinese_calendar import is_workday,is_holiday

# 判断工作日 限定2020年
da = datetime.date(2020, 9, 27)
boll = is_holiday(da)
# boll = is_workday(da)
print(boll)

注意:目前chinese_calendar库更新到2020年底,2021年暂时报错。

相关标签: python