python获取本周、上周、本月、上月及本季的时间代码实例


Posted in Python onSeptember 08, 2020

前言

本文主要介绍的是关于利用python 获取本周,上周,本月,上月,本季的时间,话不多说了,来一起看看实现的方法吧

示例代码:

import datetime
from datetime import timedelta
 
now = datetime.datetime.now()
 
# 今天
today = now
print('--- today = {}'.format(today))
 
# 昨天
yesterday = now - timedelta(days=1)
print('--- yesterday = {}'.format(yesterday))
 
# 明天
tomorrow = now + timedelta(days=1)
print('--- tomorrow = {}'.format(tomorrow))
 
# 当前季度
now_quarter = now.month / 3 if now.month % 3 == 0 else now.month / 3 + 1
print('--- now_quarter = {}'.format(now_quarter))
 
# 本周第一天和最后一天
this_week_start = now - timedelta(days=now.weekday())
this_week_end = now + timedelta(days=6 - now.weekday())
print('--- this_week_start = {} this_week_end = {}'.format(this_week_start, this_week_end))
 
# 上周第一天和最后一天
last_week_start = now - timedelta(days=now.weekday() + 7)
last_week_end = now - timedelta(days=now.weekday() + 1)
print('--- last_week_start = {} last_week_end = {}'.format(last_week_start, last_week_end))
 
# 本月第一天和最后一天
this_month_start = datetime.datetime(now.year, now.month, 1)
this_month_end = datetime.datetime(now.year, now.month + 1, 1) - timedelta(days=1)+ datetime.timedelta(
	hours=23, minutes=59, seconds=59)
print('--- this_month_start = {} this_month_end = {}'.format(this_month_start, this_month_end))
 
# 上月第一天和最后一天
last_month_end = this_month_start - timedelta(days=1)+ datetime.timedelta(
	hours=23, minutes=59, seconds=59)
last_month_start = datetime.datetime(last_month_end.year, last_month_end.month, 1)
print('--- last_month_end = {} last_month_start = {}'.format(last_month_end, last_month_start))
 
# 本季第一天和最后一天
month = (now.month - 1) - (now.month - 1) % 3 + 1
this_quarter_start = datetime.datetime(now.year, month, 1)
this_quarter_end = datetime.datetime(now.year, month + 3, 1) - timedelta(days=1)+ datetime.timedelta(
	hours=23, minutes=59, seconds=59)
print('--- this_quarter_start = {} this_quarter_end = {}'.format(this_quarter_start, this_quarter_end))
 
# 上季第一天和最后一天
last_quarter_end = this_quarter_start - timedelta(days=1)+ datetime.timedelta(
	hours=23, minutes=59, seconds=59)
last_quarter_start = datetime.datetime(last_quarter_end.year, last_quarter_end.month - 2, 1)
print('--- last_quarter_start = {} last_quarter_end = {}'.format(last_quarter_start, last_quarter_end))
 
# 本年第一天和最后一天
this_year_start = datetime.datetime(now.year, 1, 1)
this_year_end = datetime.datetime(now.year + 1, 1, 1) - timedelta(days=1)+ datetime.timedelta(
	hours=23, minutes=59, seconds=59)
print('--- this_year_start = {} this_year_end = {}'.format(this_year_start, this_year_end))
 
# 去年第一天和最后一天
last_year_end = this_year_start - timedelta(days=1)+ datetime.timedelta(
	hours=23, minutes=59, seconds=59)
last_year_start = datetime.datetime(last_year_end.year, 1, 1)
print('--- last_year_start = {} last_year_end = {}'.format(last_year_start, last_year_end))

总结

到此这篇关于利用python获取本周、上周、本月、上月及本季的时间的文章就介绍到这了,更多相关python获取本周、上周、本月、上月及本季时间内容请搜索三水点靠木以前的文章或继续浏览下面的相关文章希望大家以后多多支持三水点靠木!

Python 相关文章推荐
浅谈Python的Django框架中的缓存控制
Jul 24 Python
python 3.5下xadmin的使用及修复源码bug
May 10 Python
致Python初学者 Anaconda入门使用指南完整版
Apr 05 Python
Python中函数参数调用方式分析
Aug 09 Python
Python通过for循环理解迭代器和生成器实例详解
Feb 16 Python
pandas修改DataFrame列名的实现方法
Feb 22 Python
解决pandas展示数据输出时列名不能对齐的问题
Nov 18 Python
pyinstaller打包单文件时--uac-admin选项不起作用怎么办
Apr 15 Python
python 读txt文件,按‘,’分割每行数据操作
Jul 05 Python
python利用faker库批量生成测试数据
Oct 15 Python
jupyter 添加不同内核的操作
Feb 06 Python
python opencv检测直线 cv2.HoughLinesP的实现
Jun 18 Python
Python 使用Opencv实现目标检测与识别的示例代码
Sep 08 #Python
Python requests接口测试实现代码
Sep 08 #Python
Python unittest装饰器实现原理及代码
Sep 08 #Python
Python selenium环境搭建实现过程解析
Sep 08 #Python
Python unittest生成测试报告过程解析
Sep 08 #Python
Python使用Selenium模拟浏览器自动操作功能
Sep 08 #Python
Python unittest如何生成HTMLTestRunner模块
Sep 08 #Python
You might like
CI(CodeIgniter)框架中的增删改查操作
2014/06/10 PHP
php递归遍历多维数组的方法
2015/04/18 PHP
PHP身份证校验码计算方法
2016/08/10 PHP
js类中的公有变量和私有变量
2008/07/24 Javascript
用Javascript数组处理多个字符串的连接问题
2009/08/20 Javascript
JSON JQUERY模板实现说明
2010/07/03 Javascript
Js event事件在IE、FF兼容性问题
2011/01/01 Javascript
js中页面的重新加载(当前页面/上级页面)及frame或iframe元素引用介绍
2013/01/24 Javascript
javascript模拟地球旋转效果代码实例
2013/12/02 Javascript
JQuery为页面Dom元素绑定事件及解除绑定方法
2014/04/23 Javascript
使用Node.js实现一个简单的FastCGI服务器实例
2014/06/09 Javascript
jQuery中ajax的get()方法用法实例
2014/12/26 Javascript
利用jsonp解决js读取本地json跨域的问题
2018/12/11 Javascript
Vuejs学习笔记之使用指令v-model完成表单的数据双向绑定
2019/04/29 Javascript
Vue自定义指令结合阿里云OSS优化图片的实现方法
2019/11/12 Javascript
webgl实现物体描边效果的方法介绍
2019/11/27 Javascript
Python 实现加密过的PDF文件转WORD格式
2020/02/04 Python
快速解决Django关闭Debug模式无法加载media图片与static静态文件
2020/04/07 Python
六种酷炫Python运行进度条效果的实现代码
2020/07/17 Python
Python爬虫之Spider类用法简单介绍
2020/08/04 Python
如何用 Python 制作 GitHub 消息助手
2021/02/20 Python
Dune London官网:英国著名奢华鞋履品牌
2017/11/30 全球购物
营销人才自我鉴定范文
2013/12/25 职场文书
家长给孩子的表扬信
2014/01/17 职场文书
2014年预备党员学习两会心得体会
2014/03/17 职场文书
关于建议书的格式范文
2014/05/20 职场文书
中文专业求职信
2014/06/20 职场文书
成绩报告单家长评语
2014/12/30 职场文书
个人廉洁自律总结
2015/03/06 职场文书
拿破仑传读书笔记
2015/07/01 职场文书
污染环境建议书
2015/09/14 职场文书
《小小的船》教学反思
2016/02/18 职场文书
教你用Python matplotlib库制作简单的动画
2021/06/11 Python
深入理解go缓存库freecache的使用
2022/02/15 Golang
Python Pandas 删除列操作
2022/03/16 Python
oracle设置密码复杂度及设置超时退出的功能
2022/06/28 Oracle