Python编程实现输⼊某年某⽉某⽇计算出这⼀天是该年第
⼏天的⽅法
本⽂实例讲述了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))
python安装教程非常详细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⽇期和字符串格式互相转换 www.jb51/article/66019.htm
t = time.strptime(_input, '%Y-%m-%d')
print(time.strftime('%j',t))
PS:这⾥再为⼤家推荐⼏款关于⽇期与天数计算的在线⼯具供⼤家使⽤:
更多关于Python相关内容感兴趣的读者可查看本站专题:《》、《》、《》、《》、《》、《》、《》、《》及《》希望本⽂所述对⼤家Python程序设计有所帮助。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。