Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 325 Bytes

File metadata and controls

16 lines (13 loc) · 325 Bytes

114 月最后一天

from datetime import date
import calendar
mydate = date.today()
_, days = calendar.monthrange(mydate.year, mydate.month)
month_last_day = date(mydate.year, mydate.month, days)
print(f"当月最后一天:{month_last_day}\n")

打印结果:

当月最后一天:2019-12-31