基于zhdate的Python公历、农历互算

2024-05-13 22:20

本文主要是介绍基于zhdate的Python公历、农历互算,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

zhdate 是公历、农历换算的python工具包。

生活中有时候需要计算跟农历和天数有关的日期,于是对zhdate进行了封装,实现了如下功能:

1 公历 -> 公历 : 天数
  2 公历 -> 农历 : 天数
  3 农历 -> 公历 : 天数
  4 农历 -> 农历 : 天数

  5 公历 + 天数 -> 公历
  6 公历 + 天数 -> 农历
  7 农历 + 天数 -> 公历
  8 农历 + 天数 -> 农历

  9 公历 -> 农历
 10 农历 -> 公历

可以用。

代码如下,复制保存到本地文件,使用python环境运行就可以了。

# -*- coding: utf-8 -*-
"""
Created on Sun Apr 28 09:25:04 2024@author: Farman
"""import zhdate
import datetime#------------------------------------------------------------------------------def zhdate_to_date(year, month, day, leap_month):try:zd = zhdate.ZhDate(year, month, day, leap_month)zd = zd.to_datetime()return True, zd.year, zd.month, zd.dayexcept:return False, None, None, None#x = zhdate_to_date(1938, 10, 29, 0)
#print(x)def date_to_zhdate(year, month, day):try:zd = zhdate.ZhDate(2000, 1, 1, False)zd = zd.from_datetime(datetime.datetime(year, month, day))return True, zd.lunar_year, zd.lunar_month, zd.lunar_day, zd.leap_monthexcept:return False, None, None, None, None#x = date_to_zhdate(1979, 2, 10)
#print(x)#------------------------------------------------------------------------------def calc_days_between_dates(year_from, month_from, day_from, year_to, month_to, day_to):try:d1 = datetime.datetime(year_from, month_from, day_from)d2 = datetime.datetime(year_to, month_to, day_to)        return True, (d2-d1).daysexcept:return False, None#x = calc_days_between_dates(1938, 10, 29, 2023, 12, 26)
#print(x)def calc_days_between_zhdates(year_from, month_from, day_from, leap_from, year_to, month_to, day_to, leap_to):try:d1 = zhdate.ZhDate(year_from, month_from, day_from, leap_from)d2 = zhdate.ZhDate(year_to, month_to, day_to, leap_to)d1 = d1.to_datetime()d2 = d2.to_datetime()return True, (d2-d1).daysexcept:return False, None#x = calc_days_between_zhdates(1938, 10, 29, False, 2023, 12, 26, False)
#print(x)def calc_days_between_date_and_zhdate(year_from, month_from, day_from, year_to, month_to, day_to, leap_to):try:d1 = datetime.datetime(year_from, month_from, day_from)d2 = zhdate.ZhDate(year_to, month_to, day_to, leap_to).to_datetime()return True, (d2 - d1).daysexcept:return False, None#x = calc_days_between_date_and_zhdate(1938, 12, 20, 2023, 12, 26, False)
#print(x)def calc_days_between_zhdate_and_date(year_from, month_from, day_from, leap_from, year_to, month_to, day_to):try:d1 = zhdate.ZhDate(year_from, month_from, day_from, leap_from).to_datetime()d2 = datetime.datetime(year_to, month_to, day_to)return True, (d2 - d1).daysexcept:return False, None#x = calc_days_between_zhdate_and_date(1938, 10, 29, False, 2024, 2, 5)
#print(x)#------------------------------------------------------------------------------def date_offset_to_date(year, month, day, offset_days):try:d = datetime.datetime(year, month, day) + datetime.timedelta(offset_days)return True, d.year, d.month, d.dayexcept:return False, None, None, None#x = date_offset_to_date(2024, 4, 30, 1)
#print(x)def date_offset_to_zhdate(year, month, day, offset_days):try:d = datetime.datetime(year, month, day) + datetime.timedelta(offset_days)m = zhdate.ZhDate(2000, 1, 1, False)m = m.from_datetime(d)return True, m.lunar_year, m.lunar_month, m.lunar_day, m.leap_monthexcept:return False, None, None, None, None#x = date_offset_to_zhdate(1938, 10, 29, 1)
#print(x)def zhdate_offset_to_zhdate(year_from, month_from, day_from, leap_from, offset_days):try:d1 = zhdate.ZhDate(year_from, month_from, day_from, leap_from)d2 = d1.to_datetime()d2 = d2 + datetime.timedelta(offset_days)d1 = d1.from_datetime(d2)return True, d1.lunar_year, d1.lunar_month, d1.lunar_day, d1.leap_monthexcept:return False, None, None, None, None#x = zhdate_offset_to_zhdate(1938, 10, 29, False, 31093)
#print(x)def zhdate_offset_to_date(year_from, month_from, day_from, leap_from, offset_days):try:d1 = zhdate.ZhDate(year_from, month_from, day_from, leap_from)d2 = d1.to_datetime()d2 = d2 + datetime.timedelta(offset_days)        return True, d2.year, d2.month, d2.dayexcept:return False, None, None, None#x = zhdate_offset_to_date(1938, 10, 29, False, 31093)
#print(x)#------------------------------------------------------------------------------def fix_line(line):line = line.strip()length = 0while True:length = len(line)line = line.replace('  ', ' ')if length == len(line):breakreturn line#print(fix_line(' 1  2   3    4'))def line_to_num_array(line):line = fix_line(line)cells = line.split(' ')cells = [int(c.lstrip('0') if len(c) > 1 else c) for c in cells]return cells#print(line_to_num_array(' 1  2   3    4'))def date_ui():print("")print("      要计算的内容")print("========================")print("  1 公历 -> 公历 : 天数")print("  2 公历 -> 农历 : 天数")print("  3 农历 -> 公历 : 天数")print("  4 农历 -> 农历 : 天数")print("")print("  5 公历 + 天数 -> 公历")print("  6 公历 + 天数 -> 农历")print("  7 农历 + 天数 -> 公历")print("  8 农历 + 天数 -> 农历")print("")print("  9 公历 -> 农历")print(" 10 农历 -> 公历")print("========================")ans = input("请输入要计算的内容 : ")if   ans == '1':print("请依次输入起始年、月、日和结束年、月、日,以空格分割不同的数据:")ans = input("")cells = line_to_num_array(ans)if len(cells) != 6:print("输入参数应该是 6 个。")else:flag, days = calc_days_between_dates(cells[0], cells[1], cells[2], cells[3], cells[4], cells[5])if not flag:print("计算失败,请检查参数是否合理。")else:print("天数:", days) elif ans == '2':print("请依次输入起始公历年、月、日和结束农历年、月、日、闰月标记,以空格分割不同的数据:")print("是闰月则闰月标记写 1, 否则写 0.")ans = input("")cells = line_to_num_array(ans)if len(cells) != 7:print("输入参数应该是 7 个。")else:flag, days = calc_days_between_date_and_zhdate(cells[0], cells[1], cells[2], cells[3], cells[4], cells[5], cells[6])if not flag:print("计算失败,请检查参数是否合理。")else:print("天数:", days) elif ans == '3':print("请依次输入起始农历年、月、日、闰月标记和结束公历年、月、日,以空格分割不同的数据:")print("是闰月则闰月标记写 1, 否则写 0.")ans = input("")cells = line_to_num_array(ans)if len(cells) != 7:print("输入参数应该是 7 个。")else:flag, days = calc_days_between_zhdate_and_date(cells[0], cells[1], cells[2], cells[3], cells[4], cells[5], cells[6])if not flag:print("计算失败,请检查参数是否合理。")else:print("天数:", days)elif ans == '4':print("请依次输入起始农历年、月、日、闰月标记和结束农历年、月、日、闰月标记,以空格分割不同的数据:")print("是闰月则闰月标记写 1, 否则写 0.")ans = input("")cells = line_to_num_array(ans)if len(cells) != 8:print("输入参数应该是 8 个。")else:flag, days = calc_days_between_zhdates(cells[0], cells[1], cells[2], cells[3], cells[4], cells[5], cells[6], cells[7])if not flag:print("计算失败,请检查参数是否合理。")else:print("天数:", days)elif ans == '5':print("请依次输入起始年、月、日和天数,以空格分割不同的数据:")ans = input("")cells = line_to_num_array(ans)if len(cells) != 4:print("输入参数应该是 4 个。")else:flag, *date = date_offset_to_date(cells[0], cells[1], cells[2], cells[3])if not flag:print("计算失败,请检查参数是否合理。")else:print("公历:%4d 年 %02d 月 %02d 日"%(date[0], date[1], date[2]))elif ans == '6':print("请依次输入起始年、月、日和天数,以空格分割不同的数据:")ans = input("")cells = line_to_num_array(ans)if len(cells) != 4:print("输入参数应该是 4 个。")else:flag, *date = date_offset_to_zhdate(cells[0], cells[1], cells[2], cells[3])if not flag:print("计算失败,请检查参数是否合理。")else:print("农历:%4d 年 %s %02d 月 %02d 日"%(date[0], '闰' if date[3] else '',  date[1], date[2]))elif ans == '7':print("请依次输入起始农历年、月、日、闰月标记和天数,以空格分割不同的数据:")print("是闰月则闰月标记写 1, 否则写 0.")ans = input("")cells = line_to_num_array(ans)if len(cells) != 5:print("输入参数应该是 5 个。")else:flag, *date = zhdate_offset_to_date(cells[0], cells[1], cells[2], cells[3], cells[4])if not flag:print("计算失败,请检查参数是否合理。")else:print("公历:%4d 年 %02d 月 %02d 日"%(date[0], date[1], date[2]))elif ans == '8':print("请依次输入起始农历年、月、日、闰月标记和天数,以空格分割不同的数据:")print("是闰月则闰月标记写 1, 否则写 0.")ans = input("")cells = line_to_num_array(ans)if len(cells) != 5:print("输入参数应该是 5 个。")else:flag, *date = zhdate_offset_to_zhdate(cells[0], cells[1], cells[2], cells[3], cells[4])if not flag:print("计算失败,请检查参数是否合理。")else:print("农历:%4d 年 %s %02d 月 %02d 日"%(date[0], '闰' if date[3] else '',  date[1], date[2]))elif ans == '9':print("请依次输入公历年、月、日,以空格分割不同的数据:")ans = input("")cells = line_to_num_array(ans)if len(cells) != 3:print("输入参数应该是 3 个。")else:flag, *date = date_to_zhdate(cells[0], cells[1], cells[2])if not flag:print("计算失败,请检查参数是否合理。")else:print("农历:%4d 年 %s %02d 月 %02d 日"%(date[0], '闰' if date[3] else '',  date[1], date[2]))elif ans == '10':print("请依次输入起始农历年、月、日、闰月标记,以空格分割不同的数据:")ans = input("")cells = line_to_num_array(ans)if len(cells) != 4:print("输入参数应该是 4 个。")else:flag, *date = zhdate_to_date(cells[0], cells[1], cells[2], cells[3])if not flag:print("计算失败,请检查参数是否合理。")else:print("公历:%4d 年 %02d 月 %02d 日"%(date[0], date[1], date[2]))else:print("未定义的输入 :[%s]"%ans)return#------------------------------------------------------------------------------def ui_loop():print("")print("日期计算工具")print("Farman@2024")while True:date_ui()ans = input("继续?(Y/n): ")if ans == 'n':breakreturn#------------------------------------------------------------------------------if __name__ == "__main__":ui_loop()

这篇关于基于zhdate的Python公历、农历互算的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/986989

相关文章

使用Python删除Excel中的行列和单元格示例详解

《使用Python删除Excel中的行列和单元格示例详解》在处理Excel数据时,删除不需要的行、列或单元格是一项常见且必要的操作,本文将使用Python脚本实现对Excel表格的高效自动化处理,感兴... 目录开发环境准备使用 python 删除 Excphpel 表格中的行删除特定行删除空白行删除含指定

Python通用唯一标识符模块uuid使用案例详解

《Python通用唯一标识符模块uuid使用案例详解》Pythonuuid模块用于生成128位全局唯一标识符,支持UUID1-5版本,适用于分布式系统、数据库主键等场景,需注意隐私、碰撞概率及存储优... 目录简介核心功能1. UUID版本2. UUID属性3. 命名空间使用场景1. 生成唯一标识符2. 数

Python办公自动化实战之打造智能邮件发送工具

《Python办公自动化实战之打造智能邮件发送工具》在数字化办公场景中,邮件自动化是提升工作效率的关键技能,本文将演示如何使用Python的smtplib和email库构建一个支持图文混排,多附件,多... 目录前言一、基础配置:搭建邮件发送框架1.1 邮箱服务准备1.2 核心库导入1.3 基础发送函数二、

Python包管理工具pip的升级指南

《Python包管理工具pip的升级指南》本文全面探讨Python包管理工具pip的升级策略,从基础升级方法到高级技巧,涵盖不同操作系统环境下的最佳实践,我们将深入分析pip的工作原理,介绍多种升级方... 目录1. 背景介绍1.1 目的和范围1.2 预期读者1.3 文档结构概述1.4 术语表1.4.1 核

基于Python实现一个图片拆分工具

《基于Python实现一个图片拆分工具》这篇文章主要为大家详细介绍了如何基于Python实现一个图片拆分工具,可以根据需要的行数和列数进行拆分,感兴趣的小伙伴可以跟随小编一起学习一下... 简单介绍先自己选择输入的图片,默认是输出到项目文件夹中,可以自己选择其他的文件夹,选择需要拆分的行数和列数,可以通过

Python中反转字符串的常见方法小结

《Python中反转字符串的常见方法小结》在Python中,字符串对象没有内置的反转方法,然而,在实际开发中,我们经常会遇到需要反转字符串的场景,比如处理回文字符串、文本加密等,因此,掌握如何在Pyt... 目录python中反转字符串的方法技术背景实现步骤1. 使用切片2. 使用 reversed() 函

Python中将嵌套列表扁平化的多种实现方法

《Python中将嵌套列表扁平化的多种实现方法》在Python编程中,我们常常会遇到需要将嵌套列表(即列表中包含列表)转换为一个一维的扁平列表的需求,本文将给大家介绍了多种实现这一目标的方法,需要的朋... 目录python中将嵌套列表扁平化的方法技术背景实现步骤1. 使用嵌套列表推导式2. 使用itert

使用Docker构建Python Flask程序的详细教程

《使用Docker构建PythonFlask程序的详细教程》在当今的软件开发领域,容器化技术正变得越来越流行,而Docker无疑是其中的佼佼者,本文我们就来聊聊如何使用Docker构建一个简单的Py... 目录引言一、准备工作二、创建 Flask 应用程序三、创建 dockerfile四、构建 Docker

Python使用vllm处理多模态数据的预处理技巧

《Python使用vllm处理多模态数据的预处理技巧》本文深入探讨了在Python环境下使用vLLM处理多模态数据的预处理技巧,我们将从基础概念出发,详细讲解文本、图像、音频等多模态数据的预处理方法,... 目录1. 背景介绍1.1 目的和范围1.2 预期读者1.3 文档结构概述1.4 术语表1.4.1 核

Python使用pip工具实现包自动更新的多种方法

《Python使用pip工具实现包自动更新的多种方法》本文深入探讨了使用Python的pip工具实现包自动更新的各种方法和技术,我们将从基础概念开始,逐步介绍手动更新方法、自动化脚本编写、结合CI/C... 目录1. 背景介绍1.1 目的和范围1.2 预期读者1.3 文档结构概述1.4 术语表1.4.1 核