热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

Python3输入年月日算出这是一年的第几天。

fromfunctoolsimportreduceyearint(input(year:\n))monthint(input(month:\n))daysi
from functools import reduce
year = int(input('year:\n'))
mOnth= int(input('month:\n'))
days = int(input('days:\n'))

mOnths= [0,31,28,31,30,31,30,31,31,30,31,30]
leap_moths = [0,31,29,31,30,31,30,31,31,30,31,30]

def de_leap(year):
    if (year % 400 == 0) or (year % 4 == 0) and (year % 100 != 0):
        return True
    else:
        return False

if de_leap(year):
    sum = reduce(lambda x,y:x+y,leap_moths[:month])+int(days)
    print("这是第%d天"%sum)

else:
    sum = reduce(lambda x, y: x + y, months[:month]) + int(days)
    print("这是第%d天" % sum)


推荐阅读
author-avatar
_雁火漫天_
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有