Python编程实现输入某年某月某日计算出这一天是该年第几天的方法

作者:知乎 时间:2022-01-22 20:57:07 

本文实例讲述了Python编程实现输入某年某月某日计算出这一天是该年第几天的方法。分享给大家供大家参考,具体如下:

#基于 Python3

一种做法:


def is_leap_year(year): # 判断闰年,是则返回True,否则返回False
 if (year % 4 == 0 and year % 100 != 0) or year % 400 == 0:
   return True
 else:
   return False
def function1(year, month, day): # 计算给定日期是那一年的第几天
 leap_year = [31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]
 no_leap_year = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]
 if is_leap_year(year):
   result = sum(leap_year[:month - 1]) + day
 else:
   result = sum(no_leap_year[:month - 1]) + day
 return result

但是如果是你自己遇到了这样的需求,那么就没必要这么复杂了。因为Python内置了完善的时间和日期处理函数。


import datetime
import time
def function2(year, month, day): # 直接使用Python内置模块datetime的格式转换功能得到结果
 date = datetime.date(year, month, day)
 return date.strftime('%j')

需要注意的是,上面的写法里函数的参数分别是年月日的整数,如果你想传入字符串,比如"2016-10-1",那就需要先对字符串做处理了。

同样的,也可以自己做或者用内置函数。


# 假如输入格式为字符串(比如从命令行读入字符串2016-10-1),则需要先对输入内容进行处理
_input = '2016-10-1'
_year1 = int(_input.split('-')[0])
_month1 = int(_input.split('-')[1])
_day1 = int(_input.split('-')[2])
# 当然你也可以用datetime的内置方法进行格式处理
t = time.strptime(_input, '%Y-%m-%d')
_year2 = t.tm_year
_month2 = t.tm_mon
_day2 = t.tm_mday

下面是完整的代码,测试"2016-10-1"的结果均为275。


import datetime
import time
def is_leap_year(year): # 判断闰年,是则返回True,否则返回False
 if (year % 4 == 0 and year % 100 != 0) or year % 400 == 0:
   return True
 else:
   return False
def function1(year, month, day): # 计算给定日期是那一年的第几天
 leap_year = [31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]
 no_leap_year = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]
 if is_leap_year(year):
   result = sum(leap_year[:month - 1]) + day
 else:
   result = sum(no_leap_year[:month - 1]) + day
 return result
def function2(year, month, day): # 直接使用Python内置模块datetime的格式转换功能得到结果
 date = datetime.date(year, month, day)
 return date.strftime('%j')
print(function1(2016, 10, 1))
print(function2(2016, 10, 1))
# 假如输入格式为字符串(比如从命令行读入字符串2016-10-1),则需要先对输入内容进行处理
_input = '2016-10-1'
_split = _input.split('-')
_year1 = int(_split[0])
_month1 = int(_split[1])
_day1 = int(_split[2])
print(function1(_year1, _month1, _day1))
print(function2(_year1, _month1, _day1))
# 当然你也可以用datetime的内置方法进行格式处理
t = time.strptime(_input, '%Y-%m-%d')
_year2 = t.tm_year
_month2 = t.tm_mon
_day2 = t.tm_mday
print(function1(_year2, _month2, _day2))
print(function2(_year2, _month2, _day2))


# 后面发现我为了编函数写复杂了,如果输入是字符串其实一句话就好
import time
_input = '2016-10-1'
# 详见Python日期和字符串格式互相转换 https://www.jb51.net/article/66019.htm
t = time.strptime(_input, '%Y-%m-%d')
print(time.strftime('%j',t))

PS:这里再为大家推荐几款关于日期与天数计算的在线工具供大家使用:

在线日期/天数计算器:
http://tools.jb51.net/jisuanqi/date_jisuanqi

在线万年历日历:
http://tools.jb51.net/bianmin/wannianli

在线阴历/阳历转换工具:
http://tools.jb51.net/bianmin/yinli2yangli

希望本文所述对大家Python程序设计有所帮助。

标签:Python,计算,第几天
0
投稿

猜你喜欢

  • Python脚本实现一键自动整理办公文件

    2022-01-02 16:36:03
  • Python写的贪吃蛇游戏例子

    2023-06-26 15:50:55
  • Asp 返回引用类型函数代码

    2011-03-10 10:44:00
  • Golang中goroutine和channel使用介绍深入分析

    2023-07-07 16:51:48
  • sqlserver 多表查询不同数据库服务器上的表

    2012-04-13 11:41:51
  • 图片预载ImageLoader 1.1 Release

    2008-11-04 20:04:00
  • Python实现多张图片合成一张马赛克图片

    2022-02-15 21:09:46
  • 一篇文章搞懂python混乱的切换操作与优雅的推导式

    2023-09-15 00:25:10
  • 61条面向对象设计的经验原则

    2008-05-08 13:05:00
  • 彻底解决MySQL使用中文乱码的方法

    2024-01-22 02:05:28
  • 关于Python使用turtle库画任意图的问题

    2023-08-21 14:02:34
  • 手写Vue2.0 数据劫持的示例

    2024-05-22 10:43:17
  • 如何用idea数据库编写快递e站

    2024-01-23 08:43:56
  • python从入门到实践之字典

    2023-05-11 22:20:17
  • 几个javascript特效代码

    2010-04-23 20:39:00
  • Python通过yagmail实现发送邮件代码解析

    2022-12-31 13:44:58
  • python针对mysql数据库的连接、查询、更新、删除操作示例

    2024-01-28 17:11:19
  • 产品列表到底应该怎么做?

    2009-01-02 16:34:00
  • Tornado Web服务器多进程启动的2个方法

    2022-01-21 04:41:05
  • python同步windows和linux文件

    2023-12-11 11:44:35
  • asp之家 网络编程 m.aspxhome.com