temp = input("请输入一个年份:") while not temp.isdigit(): print("您的输入不合法") temp = input("请输入一个年份:") year = int(temp) if (year %4==0 and year %100 !=0) or year%400 ==0: print("您输入的年份是闰年") else: print("您输入的年份不是闰年")
Posted sunshining-f
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了判定一个年份是闰年相关的知识,希望对你有一定的参考价值。
temp = input("请输入一个年份:") while not temp.isdigit(): print("您的输入不合法") temp = input("请输入一个年份:") year = int(temp) if (year %4==0 and year %100 !=0) or year%400 ==0: print("您输入的年份是闰年") else: print("您输入的年份不是闰年")
以上是关于判定一个年份是闰年的主要内容,如果未能解决你的问题,请参考以下文章
判定闰年问题:年份能被4整除,并且不能被100整除,或者年份能被400整除