您的位置:

Python闰年详解

一、闰年的定义

闰年是指公历年份为4的倍数的年份为闰年,但是整百的年份要被400整除才是闰年

例如1900年就不是闰年,但是2000年是闰年

使用Python可以很容易的判断某一年份是否为闰年,具体代码如下:

def is_leap_year(year):
    '''判断某一年是否为闰年'''
    return year % 4 == 0 and year % 100 != 0 or year % 400 == 0

if is_leap_year(2000):
    print('2000年是闰年')
else:
    print('2000年不是闰年')

二、判断某个范围内的闰年数量

对于一个给定的年份区间,可以通过遍历每一年来判断其中闰年的数量,具体代码如下:

def count_leap_years(start, end):
    '''计算从 start 到 end 之间闰年的数量'''
    count = 0
    for year in range(start, end+1):
        if is_leap_year(year):
            count += 1
    return count

print(f'1900年到2019年之间一共有{count_leap_years(1900,2019)}个闰年')

三、指定日期为该年的第几天

给定一个日期,可以通过计算该日期距离该年1月1日的天数来得到该日期在该年中的第几天

具体代码如下:

def day_of_year(year, month, day):
    '''返回给定日期在该年中的第几天'''
    days_per_month = [0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]
    if is_leap_year(year):
        days_per_month[2] = 29
    total_days = day
    for i in range(1, month):
        total_days += days_per_month[i]
    return total_days

print(day_of_year(2022, 6, 15))

四、日期之间的间隔天数

给定两个日期,可以通过计算两个日期距离其所在年份1月1日的天数之差来计算它们之间的间隔天数

具体代码如下:

def days_between_dates(date1, date2):
    '''返回给定两个日期之间相差的天数'''
    year1, month1, day1 = date1
    year2, month2, day2 = date2
    days1 = day_of_year(year1, month1, day1)
    days2 = day_of_year(year2, month2, day2)
    if year1 == year2:
        return abs(days2 - days1)
    elif year2 - year1 == 1 and month1 > month2:
        return days_between_dates((year1+1, 1, 1), (year2, month2, day2)) + 365 - days1
    else:
        days_in_between_years = 0
        for year in range(year1+1, year2):
            if is_leap_year(year):
                days_in_between_years += 366
            else:
                days_in_between_years += 365
        return days_in_between_years + days_between_dates((year1, 12, 31), (year1, 12, 31)) + days_between_dates((year2, 1, 1), (year2, month2, day2))

print(days_between_dates((2020, 5, 28), (2022, 6, 15)))

五、其他

Python中datetime模块提供了很多方便的时间处理工具,在处理日期和时间方面也提供很多便利

例如在datetime模块中,可以通过today()方法获得当前日期,通过strftime()方法将日期格式化为字符串

具体代码如下:

import datetime

today = datetime.datetime.today()
print(today.strftime('%Y-%m-%d'))

此外,还有一些其他的工具可以方便地处理日期和时间,例如arrow和pendulum等库

Python闰年详解

2023-05-20
Python判断闰年

2023-05-09
Python 程序:检查闰年

2022-07-24
Python 程序:检查年份是否是闰年

2022-07-24
Python闰年判定代码探究

2023-05-21
python基础学习整理笔记,Python课堂笔记

2022-11-21
java闰年,java闰年判断

2023-01-10
java闰年,java闰年程序

2022-11-28
js实现判断年份为闰年的代码,js判断今年是否为闰年

本文目录一览: 1、怎么用“JS实现”判断闰年? 2、用JS实现判断闰年 3、JS如何优雅的判断闰年 怎么用“JS实现”判断闰年? function isLeapYear(year) //闰年能被4整

2023-12-08
js判断闰年的代码(js写闰年怎么写)

本文目录一览: 1、使用javascript编写程序来判断闰年 2、js判断是否为闰年条件 3、怎么用“JS实现”判断闰年? 4、js 实现判断一个年份是否是闰年 使用javascript编写程序来判

2023-12-08
我的python笔记06(Python)

2022-11-14
c语言公历闰年,C语言怎么表示闰年

2022-11-23
c语言if闰年,c语言写闰年

2023-01-03
java方法整理笔记(java总结)

2022-11-08
python学习之笔记(python的笔记)

2022-11-10
用c语言判断某一年是否为闰年,c语言判断是否为闰年

2023-01-04
Python实现判断闰年的条件

2023-05-20
c语言请画出判断闰年的算法,用c语言编写闰年的判断

2022-11-26
python输入一个年份,python输入一个年份区间判定该

2022-11-17
c语言计算闰年方法,c++闰年的计算方法

2022-11-29