python——判定某年是不是闰年

import calendar

print("本程序可判定某年是不是闰年")
nf=input("请输入您要判定的年份:")
nf=int(nf)

#("{}年".format(calendar.isleap(nf)))

if nf/100!=0 and nf/4=0 or nf/100==0 and nf/400!=0:
    print("{}年不是闰年!".format(nf))
else:
    print("{}年是闰年!".format(nf))

posted @ 2021-02-20 14:40  段昱辰  阅读(451)  评论(0)    收藏  举报