输入年份和月份,判断该月有多少天。用python代码
时间: 2023-05-14 15:06:25 浏览: 162
python 输入某年某月某日,判断这一天是这一年的第几天?(示例)
以下是Python代码实现:
```python
year = int(input("请输入年份:"))
month = int(input("请输入月份:"))
if month in [1, 3, 5, 7, 8, 10, 12]:
print("{}年{}月有31天".format(year, month))
elif month in [4, 6, 9, 11]:
print("{}年{}月有30天".format(year, month))
elif month == 2:
if (year % 4 == 0 and year % 100 != 0) or year % 400 == 0:
print("{}年{}月有29天".format(year, month))
else:
print("{}年{}月有28天".format(year, month))
else:
print("输入的月份不合法")
```
输入年份和月份后,程序会根据输入的年份和月份判断该月有多少天,并输出结果。
阅读全文