python获取每月的最后一天

import calendar   # 导入库
year = 2021       # 指定年份
month = 2         # 指定月份
lastDay = calendar.monthrange(year, month)[1]   # 指定年月的最后一天,即指定年月的整月总天数
print(lastDay)      # 28

输出结果:28
即2021年2月份的最后一天是第28天,也即2021年2月份总共28天。

    原文作者:深度学习菜鸟
    原文地址: https://blog.csdn.net/qq_36756866/article/details/113756562
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞