import calendar # 导入库
year = 2021 # 指定年份
month = 2 # 指定月份
lastDay = calendar.monthrange(year, month)[1] # 指定年月的最后一天,即指定年月的整月总天数
print(lastDay) # 28
输出结果:28
即2021年2月份的最后一天是第28天,也即2021年2月份总共28天。
import calendar # 导入库
year = 2021 # 指定年份
month = 2 # 指定月份
lastDay = calendar.monthrange(year, month)[1] # 指定年月的最后一天,即指定年月的整月总天数
print(lastDay) # 28
输出结果:28
即2021年2月份的最后一天是第28天,也即2021年2月份总共28天。