编写一组python程序,输入年份year、月份month,判断该月的天数。闰年:能被4整除但不能被100整除或者能被400整除的年份是闰年。
时间: 2023-06-12 15:04:15 浏览: 1048
输入一个年份,输出是否为闰年.py
可以使用以下代码实现:
```python
year = int(input("请输入年份:"))
month = int(input("请输入月份:"))
# 判断闰年
if (year % 4 == 0 and year % 100 != 0) or year % 400 == 0:
leap_year = True
else:
leap_year = False
# 判断天数
if month in [1, 3, 5, 7, 8, 10, 12]:
days = 31
elif month in [4, 6, 9, 11]:
days = 30
else:
if leap_year:
days = 29
else:
days = 28
print("{}年{}月有{}天".format(year, month, days))
```
这段代码首先根据输入的年份判断是否为闰年,然后根据输入的月份判断该月的天数,并将结果输出。
阅读全文