输入年、月、日,计算该日是该年的第几天#python

输入年、月、日,计算该日是该年的第几天。

import time//时间模块
list=[0,31,28,31, 30, 31, 30, 31, 31, 30, 31, 30, 31]
britday=input("请输入日期:")
data=time.strptime(britday,'%Y-%m-%d')//定义输入日期样式
year=data.tm_year
month=data.tm_mon
day=data.tm_mday
days=0
if year%400==0 or year%4==0 and year%100!=0://判断该年是否为闰年
    if month>2:
        list[2]+=1
for i in range(month)://将该月份的前几个月份日期相加
    days += list[i]
print(f"{month}月{day}日是{year}年的第{days+day}天!!!!!")

你可能感兴趣的:(输入年、月、日,计算该日是该年的第几天#python)