python中怎么判断某一年是闰年?
2个回答
如果年份末尾两个零,除以400;不然除以4,能被整除就是闰年。
def is_leap(year):
return year % 4 == 0 and (year % 100 != 0 or year % 400 == 0)
SofaSofa数据科学社区DS面试题库 DS面经python中怎么判断某一年是闰年?
如果年份末尾两个零,除以400;不然除以4,能被整除就是闰年。
def is_leap(year):
return year % 4 == 0 and (year % 100 != 0 or year % 400 == 0)
SofaSofa数据科学社区DS面试题库 DS面经