Python_每日习题_0004_一年中的第几天

Posted LXL_1

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python_每日习题_0004_一年中的第几天相关的知识,希望对你有一定的参考价值。

# 题目 输入某年某月某日,判断这一天是这一年的第几天?
# 程序分析 特殊情况,闰年时需考虑二月多加一天:


def isLeapYear(y):
    return (y%400==0 or (y%4==0 and y%100!=0))

Dofm = [0, 31, 28, 31, 30, 31, 31, 30, 31, 30]
res = 0
year = int(input(Year:))
month = int(input(Month:))
day = int(input(day:))

if isLeapYear(year):
    Dofm[2]+=1

for i in range(month):
    res+=Dofm[i]

print(res + day)

 

以上是关于Python_每日习题_0004_一年中的第几天的主要内容,如果未能解决你的问题,请参考以下文章

Python|Leetcode《1154》|一年中的第几天

《LeetCode之每日一题》:242.一年中的第几天

Python小代码_8_今天是今年的第几天

Python中根据提供的日期,返回是一年中的第几天

LeetCode 997. 找到小镇的法官 / 475. 供暖器 / 1154. 一年中的第几天

python练习题4-判断日期是一年的第几天