#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)