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


Posted in Python onApril 18, 2017

本文实例讲述了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://3water.com/article/66019.htm
t = time.strptime(_input, '%Y-%m-%d')
print(time.strftime('%j',t))

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

在线日期/天数计算器:
http://tools.3water.com/jisuanqi/date_jisuanqi

在线万年历日历:
http://tools.3water.com/bianmin/wannianli

在线阴历/阳历转换工具:
http://tools.3water.com/bianmin/yinli2yangli

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

Python 相关文章推荐
Python中的高级数据结构详解
Mar 27 Python
Flask框架的学习指南之制作简单blog系统
Nov 20 Python
Python内置函数reversed()用法分析
Mar 20 Python
Python实现的根据IP地址计算子网掩码位数功能示例
May 23 Python
python matplotlib实现双Y轴的实例
Feb 12 Python
PyCharm+Qt Designer+PyUIC安装配置教程详解
Jun 13 Python
Windows系统下pycharm中的pip换源
Feb 23 Python
python保留格式汇总各部门excel内容的实现思路
Jun 01 Python
Python基于gevent实现文件字符串查找器
Aug 11 Python
Python虚拟环境的创建和使用详解
Sep 07 Python
教你使用Sublime text3搭建Python开发环境及常用插件安装另分享Sublime text3最新激活注册码
Nov 12 Python
python实现企业微信定时发送文本消息的示例代码
Nov 24 Python
浅析python递归函数和河内塔问题
Apr 18 #Python
Python使用正则表达式实现文本替换的方法
Apr 18 #Python
Python外星人入侵游戏编程完整版
Mar 30 #Python
Python随机数用法实例详解【基于random模块】
Apr 18 #Python
django使用图片延时加载引起后台404错误
Apr 18 #Python
使用Python3制作TCP端口扫描器
Apr 17 #Python
Python实现将一个大文件按段落分隔为多个小文件的简单操作方法
Apr 17 #Python
You might like
php Undefined index和Undefined variable的解决方法
2008/03/27 PHP
php模拟js函数unescape的函数代码
2012/10/20 PHP
PHP生成自定义长度随机字符串的函数分享
2014/05/04 PHP
Yii使用find findAll查找出指定字段的实现方法
2014/09/05 PHP
Laravel5框架添加自定义辅助函数的方法
2018/08/01 PHP
asp.net网站开发中用jquery实现滚动浏览器滚动条加载数据(类似于腾讯微博)
2012/03/14 Javascript
可自定义速度的js图片无缝滚动示例分享
2014/01/20 Javascript
jQuery源码解读之removeClass()方法分析
2015/02/20 Javascript
JS模拟实现Select效果代码
2015/09/24 Javascript
JS调用某段SQL语句的方法
2016/10/20 Javascript
js实现移动端微信页面禁止字体放大
2017/02/16 Javascript
node实现基于token的身份验证
2018/04/09 Javascript
微信小程序使用form表单获取输入框数据的实例代码
2018/05/17 Javascript
微信小程序实现topBar底部选择栏效果
2018/07/20 Javascript
ios设备中angularjs无法改变页面title的解决方法
2018/09/13 Javascript
JavaScript ES6箭头函数使用指南
2018/12/30 Javascript
9102了,你还不会移动端真机调试吗
2019/03/25 Javascript
vue中使用props传值的方法
2019/05/08 Javascript
vue实现图片按比例缩放问题操作
2020/08/11 Javascript
Python压缩和解压缩zip文件
2015/02/14 Python
Python实现比较两个文件夹中代码变化的方法
2015/07/10 Python
python opencv人脸检测提取及保存方法
2018/08/03 Python
[原创]Python入门教程3. 列表基本操作【定义、运算、常用函数】
2018/10/30 Python
Python实现字典排序、按照list中字典的某个key排序的方法示例
2018/12/18 Python
使用pyecharts生成Echarts网页的实例
2019/08/12 Python
django项目用higcharts统计最近七天文章点击量
2019/08/17 Python
在主流系统之上安装Pygame的方法
2020/05/20 Python
Pytorch实验常用代码段汇总
2020/11/19 Python
英国曼彻斯特宠物用品品牌:Bunty Pet Products
2019/07/27 全球购物
俄罗斯设计师家具购物网站:The Furnish
2019/12/01 全球购物
计算机专业职业生涯规划范文
2014/01/19 职场文书
关于逃课的检讨书
2014/01/23 职场文书
汽车装潢店创业计划书范文
2014/02/05 职场文书
2014年最新领导班子整改方案
2014/09/27 职场文书
2014年业务员工作总结范文
2014/11/17 职场文书
MySQL的意向共享锁、意向排它锁和死锁
2022/07/15 MySQL