python获取当前日期时间节假日及农历时间代码
代码语言:python
所属分类:其他
代码描述:python获取当前日期时间节假日及农历时间代码
代码标签: python 当前 日期 时间 节假日 农历 时间 代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
#pip install holidays lunarcalendar from datetime import datetime import holidays from lunarcalendar import Converter, Solar, Lunar # 获取当前日期和时间 now = datetime.now() current_date = now.strftime("%Y-%m-%d") current_time = now.strftime("%H:%M:%S") current_weekday = now.strftime("%A") # 获取节假日 cn_holidays = holidays.CountryHoliday('CN') is_holiday = current_date in cn_holidays holiday_name = cn_holidays.get(current_date) if is_holiday else "Not a holiday" # 获取中国农历日期 solar_date = S.........完整代码请登录后点击上方下载按钮下载查看
网友评论0