How to get the last day of the month?

后端 未结 30 2976
迷失自我
迷失自我 2020-11-22 06:13

Is there a way using Python\'s standard library to easily determine (i.e. one function call) the last day of a given month?

If the standard library doesn\'t support

30条回答
  •  青春惊慌失措
    2020-11-22 06:54

    The easiest & most reliable way I've found so Far is as:

    from datetime import datetime
    import calendar
    days_in_month = calendar.monthrange(2020, 12)[1]
    end_dt = datetime(2020, 12, days_in_month)
    

提交回复
热议问题