Python获取某个月份的总天数
2021-01-21 17:51
3424
import calendar
print(calendar.monthrange(2021, 2)[1])
#28
0 条讨论