爬虫与Python:(二)Python基础篇——扩展:判断闰年
现在做一个简单的程序:输入年份字符串,判断是否为闰年。闰年的条件为什么?
- 非整百年能被4整除
- 整百年能被400整除
代码如下:
1 # 判断是否为闰年 2 year =int(input("请输入一个年份:")) 3 if year % 4 == 0 : 4 if year%100 == 0 : 5 if year % 400 == 0 : 6 print('{}是闰年'.format(year)) # 整百年且能被400整除是闰年 7 else: 8 print('{}不是闰年'.format(year)) 9 else: 10 print('{}是闰年'.format(year)) # 能被4整除,且非整百年是闰年 11 else: 12 print('{}不是闰年'.format(year))
运行后,控制台会输出:
请输入一个年份:2000
2000是闰年
有志者,事竟成,破釜沉舟,百二秦关终属楚; 苦心人,天不负,卧薪尝胆,三千越甲可吞吴。