要定义一个Python函数,接受年份和月份作为参数,返回对应月份的天数,可以使用以下代码:
```python
def days_in_month(year, month):
if month in [1, 3, 5, 7, 8, 10, 12]:
return 31
elif month in [4, 6, 9, 11]:
return 30
elif month == 2:
if (year % 4 == 0 and year % 100 != 0) or (year % 400 == 0):
return 29
else:
return 28
else:
return "Invalid month"
# 示例
year = 2022
month = 2
print(days_in_month(year, month))
```
这个函数首先检查月份是否在有31天的月份列表中,如果是,则返回31。接下来,它检查月份是否在有30天的月份列表中,如果是,则返回30。最后,如果月份是2月,它会检查年份是否是闰年,如果是闰年,则返回29,否则返回28。如果输入的月份不在1到12之间,函数将返回"Invalid month"。
```python
def days_in_month(year, month):
if month in [1, 3, 5, 7, 8, 10, 12]:
return 31
elif month in [4, 6, 9, 11]:
return 30
elif month == 2:
if (year % 4 == 0 and year % 100 != 0) or (year % 400 == 0):
return 29
else:
return 28
else:
return "Invalid month"
# 示例
year = 2022
month = 2
print(days_in_month(year, month))
```
这个函数首先检查月份是否在有31天的月份列表中,如果是,则返回31。接下来,它检查月份是否在有30天的月份列表中,如果是,则返回30。最后,如果月份是2月,它会检查年份是否是闰年,如果是闰年,则返回29,否则返回28。如果输入的月份不在1到12之间,函数将返回"Invalid month"。
上一篇:青年马克思主义学习
下一篇:内部选拔管理人员的弊端?