编程语言
首页 > 编程语言> > python判断工作日,节假日(支持2021年)

python判断工作日,节假日(支持2021年)

作者:互联网

转自:python判断工作日,节假日

包只更新到2020年,所以只能自己写了

 

def is_workday(date):
    # HOLIDAY 周一到周五放假的日期
    HOLIDAY = ["2021-09-20", "2021-09-21", "2021-10-01", "2021-10-04", "2021-10-05", "2021-10-06", "2021-10-07"]

    # WORKDAY周六周天还要上班的日期
    WORKDAY = ["2021-09-18", "2021-09-26", "2021-10-09"]

    weekday = datetime.datetime.strptime(date, "%Y-%m-%d").weekday()
    return bool(date in WORKDAY or (weekday <= 4 and date not in HOLIDAY))

 

一、概述

最近在做数据分析,需要判断一个日期是否为工作日,节假日。

找到一个现成的插件,蛮好用的。

插件介绍

https://pypi.org/project/chinesecalendar/

判断某年某月某一天是不是工作日/节假日。 支持 2004年 至 2020年,包括 2020年 的春节延长。 兼容 Python2 与 Python3.

安装

pip install chinesecalendar

二、使用示例

当前日期

import datetime
from chinese_calendar import is_workday
date = datetime.datetime.now().date()
if is_workday(date):
  print("是工作日")
else:
  print("是休息日")

执行输出:是工作日

指定日期

import datetime
from chinese_calendar import is_workday
date = datetime.datetime(2020, 8, 9)
if is_workday(date):
  print("是工作日")
else:
  print("是休息日")

执行输出:是休息日

 

 

标签:10,节假日,python,09,datetime,workday,2021,date
来源: https://www.cnblogs.com/hailin2018/p/14915269.html