您的当前位置:首页正文

python计算某年某月的天数

2024-11-08 来源:个人技术集锦

import calendar

monthRange = calendar.monthrange(2004,2)

print(monthRange[1])

显示全文