计算闰年

#22 计算闰年 能被4整除 但不能被100整除,或者能被400整除
result=[]
for i in range(1980,2019):
    if (i%4==0 and i%100!=0) or (i%400==0):
        result.append(i)
print(result)

 

posted @ 2018-12-28 16:55  小金儿  阅读(152)  评论(0编辑  收藏  举报