Python 新手村练习——编写函数days(year,month,day)根据年月日计算这是一年的第几天,返回天数到主函数中输出
def days(year,month,day): #定义一个新的函数 if year %4 ==0 and year %100 ==0 or year %400 ==0: #首先判断当年是否为闰年 day_second = 29 else: day_second =28 days_month=(31,day_second,31,30,31,30,31,31,30,31,30.
原创
2021-07-28 19:42:31 ·
4775 阅读 ·
0 评论