4.1 python 判断闰年

代码

year=int(input("请输入年份:"))
if(year%4==0 and year%100 !=0):
    print("是闰年!")
elif(year%400==0):
    print("是闰年!")
else:
    print("不是闰年!")

运行结果截图:

更多推荐

python 判断闰年