这里是三岁,接下来是小白专属,无聊题,一起来看看
什么的闰年
闰年是公历中的名词。闰年分为普通闰年和世纪闰年。
普通闰年:公历年份是4的倍数的,一般是闰年。(如2004年就是闰年);
世纪闰年:公历年份是整百数的,必须是400的倍数才是闰年(如1900年不是世纪闰年,2000年是世纪闰年);
emmm, 关键词:四年一闰,百年不闰,四百年再闰
闰年判断
判断使用 if 语句
if (date%4 == 0 and date%100 != 0)or (date%400 == 0)
这个就是判断闰年的写法
完整版:
date = int(input('输入要判断的年份:')) if (date % 4 == 0 and date % 100 != 0) or (date % 400 == 0): print(f'{date}年是闰年!') else: print(f'{date}年不是闰年!')
判断某个区间的闰年有哪些和数量
def leap_year(starting_date = 2000, termination_date = 2500): have, none ,amount = 0, 0, 0 for date in range(starting_date,termination_date+1): # print(date) #判断闰年 if (date % 4 == 0 and date % 100 != 0) or (date % 400 == 0): if have == 0 :#输出一遍起始语句 print(f'{starting_date}年到{termination_date}年之间的闰年有:') have += 1 print(date) amount += 1 none += 1 elif none == 0 :#判断是不是有闰年 if have == 0 :#仅输出一次 print(f'{starting_date}年到{termination_date}年之间没有闰年!') have += 1 return none, amount if __name__ == '__main__': starting_date = int(input('输入起始年份:')) termination_date = int(input('输入终止年份:')) none, amount = leap_year(starting_date, termination_date) if none != 0 : print(f'共有闰年{amount}个')
备注:该程序适用于python3.7以上版本
代码不是很好,但是是三岁小编想的到比较好的一个方法了,如果有好的方法小编一定及时修改!
三岁白话带大家学编程,希望大家点赞,留言加收藏,如有问题欢迎骚扰小编。【狗头】