likes
comments
collection
share

Python 快速计算今年往后周末的生日

作者站长头像
站长
· 阅读数 43

很幸运,今年我的生日是在周六,所以能和家人一起外出游玩,一起吃饭,一起吃生日蛋糕,非常难得,所以我想写一段代码,可以迅速列表我今后能周末生日的日期以及次数,提前剧透我的人生

这里需要安装农历日期需要的库

pip install lunardate

核心代码如下

from lunardate import LunarDate
from datetime import datetime

class BirthdayWeek:
    def __init__(self, who, year, month, day) -> None:
        self.who = who
        # 输入阴历的年份、月份、日期
        self.lunar_year = year
        self.lunar_month = month
        self.lunar_day = day
        pass

    def print(self):
        count = 0 # 记录周末生日的次数
        printlines = [] # 记录生日那天的岁数、日期、以及周几
        # 输出阳历日期
        for year in range(self.lunar_year, self.lunar_year + 100):
             # 将输入的阴历日期转为lunardate库中的对象
            lunar_date = LunarDate(year, self.lunar_month, self.lunar_day)
            # 使用lunardate库中的方法将阴历日期转为阳历日期
            solar_date = lunar_date.toSolarDate()

            # 今年及以后, 符合周六或周日生日条件
            if year >= datetime.now().year and (solar_date.weekday() == 5 or solar_date.weekday() == 6):
                printlines.append("{}岁时 {}年{}月{}日 {}".format(year - self.lunar_year, solar_date.year, solar_date.month, solar_date.day,
                                          self.weekday(solar_date.weekday())))
                count += 1

        print("\r\n{}往后还有{}次周末的生日\r\n".format(self.who,count))
        print("分别为:\r\n")
        for line in printlines:
            print(line)
        pass

    def weekday(self, week:int)->str:
        weekstr = ["周一", "周二", "周三", "周四", "周五", "周六", "周日"]
        return weekstr[week]
    

使用方法

加入标记,以及生出的年月日(我这里用的是农历的生日)

BirthdayWeek(who="我", year=1989, month=4, day=18).print()
BirthdayWeek(who="老婆", year=1994, month=1, day=19).print()

输出结果

我往后还有18次周末的生日

分别为:

35岁时 2024年5月25日 周六
38岁时 2027年5月23日 周日
41岁时 2030年5月19日 周日
42岁时 2031年6月7日 周六
45岁时 2034年6月4日 周日
55岁时 2044年5月15日 周日
56岁时 2045年6月3日 周六
58岁时 2047年5月12日 周日
59岁时 2048年5月30日 周六
62岁时 2051年5月27日 周六
72岁时 2061年6月5日 周日
79岁时 2068年5月19日 周六
82岁时 2071年5月17日 周日
83岁时 2072年6月4日 周六
85岁时 2074年5月13日 周日
86岁时 2075年6月1日 周六
89岁时 2078年5月29日 周日
99岁时 2088年5月8日 周六

老婆往后还有19次周末的生日

分别为:

31岁时 2025年2月16日 周日
32岁时 2026年3月7日 周六
34岁时 2028年2月13日 周日
35岁时 2029年3月3日 周六
38岁时 2032年2月29日 周日
48岁时 2042年2月9日 周日
49岁时 2043年2月28日 周六
52岁时 2046年2月24日 周六
55岁时 2049年2月20日 周六
59岁时 2053年3月9日 周日
62岁时 2056年3月4日 周六
65岁时 2059年3月2日 周日
72岁时 2066年2月13日 周六
75岁时 2069年2月10日 周日
76岁时 2070年3月1日 周六
79岁时 2073年2月25日 周六
82岁时 2076年2月23日 周日
89岁时 2083年3月7日 周日
99岁时 2093年2月14日 周六

看起来次数非常有限,很扎心,但是也促使我们更珍惜当下的每一天

转载自:https://juejin.cn/post/7372754708591132684
评论
请登录