Python判断当前节气

#闰年公式,四年是闰年,一百年不是闰年,四百年是闰年。

年份=输入(“请输入年份”)

month = input(" " #注意月份,但是现在是几月,而不是过了几月。

天=7

def judge _闰年(年):

if(年份%4==0,年份%100!=0 ):

返回1

elif(year%400==0):

返回2

否则:

返回0

Year _ day = [31,28,31,30,31,30,31,30,31]

Leap _ year = [31,29,31,30,31,30,31,30,31。

Leap _ year _ f = [31,30,31,30,31,30,31,31,30,365438。

year_rule=[year_day,闰年,闰年f]

Count_day=0 #初始化天数为0。

对于范围内的I(month-1):#注意月份,但是现在是几月,而不是已经过了几个月。

count _ day+= year _ rule[judge _闰年(年)][i]

打印(计数日)

计数日+=日

Print('今天是今年的第一天',count_day,' day ')