题目
6.编写一个程序,在主程序中求1900~2020年中所有的闰年,每行输出5个年份。闰年即能被4整除但不能被 100 整除,或者能被 400整除的年份。要求定义一个函数isLeap(),该函数用来判断某年是否为闰年,是国年则函数返回True,否则返回 False。
参考代码
def isLeap(year):
if year % 4 == 0 and year % 100 != 0 or year % 400 == 0:
return True
else:
return False
count =0
for i in range(1900,2021):
if isLeap(i):
print(i,end=" ")
count+=1
if count%5==0 and count!=0:
print()
count = 0
运行结果
1904 1908 1912 1916 1920
1924 1928 1932 1936 1940
1944 1948 1952 1956 1960
1964 1968 1972 1976 1980
1984 1988 1992 1996 2000
2004 2008 2012 2016 2020
说明
此方法仅供学习参考,欢迎讨论