python简单判断输入年份是否为闰年

54次阅读

共计 263 个字符,预计需要花费 1 分钟才能阅读完成。

"""
闰年:能被 4 整除,并且不能被 100 整除
或者
能被 4 整除,并且又能被 400 整除
"""
while 1:
    this_time = int(input("请输入年份:"))
    #条件 1
    condition1 = this_time%4 == 0 and this_time%100 != 0
    #条件 2
    condition2 = this_time%4 == 0 and this_time%400 == 0
    if (condition1 or condition2):
        print("%d 年是闰年"%(this_time))
    else:
        print("%d 年不是闰年"%(this_time))

正文完
 0