[Python]代码
#简单小程序 from datetime import datetime import calendar def getMonths(): d = datetime.now() c = calendar.Calendar() year = d.year month = d.month if month == 1 : month = 12 year -= 1 else : month -= 1 months = calendar.monthrange(year, month)[1] return months
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/8070.html