获取用户输入月份,输出该月有多少天(不考虑闰年)的python代码怎么写
时间: 2024-04-22 20:11:38 浏览: 113
month = int(input("请输入月份:"))
if month in [1, 3, 5, 7, 8, 10, 12]:
print("该月有31天")
elif month in [4, 6, 9, 11]:
print("该月有30天")
elif month == 2:
print("该月有28天")
相关问题
获取用户输入月份,输出该月有多少天(考虑闰年)的python代码
以下是Python代码,可以获取用户输入的月份并输出该月有多少天,考虑了闰年的情况。
```python
year = input("请输入年份:\n")
month = input("请输入月份:\n")
year = int(year)
month = int(month)
# 判断该月份的天数
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("{}年2月有29天。".format(year))
else:
print("{}年2月有28天。".format(year))
else:
print("输入错误,请重新输入。")
```
这段代码首先要求用户输入年份和月份,然后根据月份的不同,判断该月份有多少天。当月份为1、3、5、7、8、10、12时,有31天;当月份为4、6、9、11时,有30天;当月份为2时,需要判断年份是否为闰年。若为闰年,则有29天;否则为28天。
python获取用户输入月份,输出该月有多少天(考虑闰年)
可以使用Python中的datetime模块来获取月份的天数,代码如下:
```python
import datetime
month = int(input("请输入月份:"))
year = datetime.datetime.now().year
if month == 2:
if year % 4 == and year % 100 != or year % 400 == :
print("该月有29天")
else:
print("该月有28天")
elif month in [1, 3, 5, 7, 8, 10, 12]:
print("该月有31天")
else:
print("该月有30天")
```
首先,使用input函数获取用户输入的月份,然后使用datetime模块获取当前年份。接着,根据月份判断该月有多少天,其中2月需要考虑闰年的情况。如果当前年份是闰年,则2月有29天,否则有28天。其他月份根据常识判断即可。最后,使用print函数输出结果。
阅读全文