摘要: 输出万年历def isleapyear(y):#计算是否是闰年 if y%100!=0: if y%4==0: return True else: return False else: if y%400==0: return True else: return False def getMonthDays(year,month):#计算每个年份每月的天数 days=31 if month==2: 阅读全文
posted @ 2019-10-14 20:32 高诗情 阅读(323) 评论(0) 推荐(0)