定义函数接收年份和月份作为参数,返回对应月份有多少天,闰年2月为29天否则为28天;4、6、9、11月月份为30天,;其它月份为31天 函数放在find_month.py中 另建一个python程序main.py,在此脚本程序中调用
时间: 2024-02-17 12:03:30 浏览: 58
js实现判断闰年及月份的最后一天
好的,以下是 `find_month.py` 中的代码实现:
```python
def get_days_of_month(year, month):
if month == 2:
if year % 4 == 0 and year % 100 != 0 or year % 400 == 0:
return 29
else:
return 28
elif month in [4, 6, 9, 11]:
return 30
else:
return 31
```
然后在 `main.py` 中调用该函数:
```python
from find_month import get_days_of_month
year = 2022
month = 2
days = get_days_of_month(year, month)
print(f"{year}年{month}月有{days}天")
```
输出结果为:`2022年2月有28天`
阅读全文