Python获取昨天、今天、明天开始、结束时间戳的方法

作者:偶爱喝可乐 时间:2022-08-23 18:23:40 

如下所示:


#!/usr/bin/python
# coding=utf-8
#
import time
import datetime
# 今天日期
today = datetime.date.today()
# 昨天时间
yesterday = today - datetime.timedelta(days=1)
# 明天时间
tomorrow = today + datetime.timedelta(days=1)
acquire = today + datetime.timedelta(days=2)
# 昨天开始时间戳
yesterday_start_time = int(time.mktime(time.strptime(str(yesterday), '%Y-%m-%d')))
# 昨天结束时间戳
yesterday_end_time = int(time.mktime(time.strptime(str(today), '%Y-%m-%d'))) - 1
# 今天开始时间戳
today_start_time = yesterday_end_time + 1
# 今天结束时间戳
today_end_time = int(time.mktime(time.strptime(str(tomorrow), '%Y-%m-%d'))) - 1
# 明天开始时间戳
tomorrow_start_time = int(time.mktime(time.strptime(str(tomorrow), '%Y-%m-%d')))
# 明天结束时间戳
tomorrow_end_time = int(time.mktime(time.strptime(str(acquire), '%Y-%m-%d'))) - 1
print '今天时间戳'
print today_start_time
print today_end_time
print '昨天时间戳'
print yesterday_start_time
print yesterday_end_time
print '明天时间戳'
print tomorrow_start_time
print tomorrow_end_time

输出结果


/usr/bin/python2.7 /home/he/dev/python_my/test.py
今天时间戳
1498233600
1498319999
昨天时间戳
1498147200
1498233599
明天时间戳
1498320000
1498406399
Process finished with exit code 0

来源:https://blog.csdn.net/qq_26656329/article/details/73658250

标签:Python,时间戳,昨天,今天,明天
0
投稿

猜你喜欢

  • Python Django项目和应用的创建详解

    2023-12-26 15:03:52
  • Python 读取图片文件为矩阵和保存矩阵为图片的方法

    2022-07-23 05:21:11
  • 详解python之多进程和进程池(Processing库)

    2022-07-18 23:23:58
  • Django实现文件上传下载功能

    2023-06-13 20:09:46
  • pycharm配置QtDesigner的超详细方法

    2022-09-07 13:35:01
  • mysql5.7.10开启慢查询详解

    2024-01-18 10:23:23
  • 详解Python类和对象内容

    2021-03-12 23:38:55
  • 用MSXML2.ServerXMLHTTP的setTimeouts属性解决并死问题

    2010-03-02 20:21:00
  • python使用NumPy文件的读写操作

    2023-09-27 18:04:44
  • python 存储json数据的操作

    2022-10-02 13:14:14
  • 静态页面实现文章点击数统计的js方法

    2008-01-23 19:17:00
  • 鼠标实现图片的渐有渐无

    2013-06-30 02:49:10
  • python实现分析apache和nginx日志文件并输出访客ip列表的方法

    2022-07-08 00:33:16
  • perl中heredoc使用说明

    2023-09-20 06:29:40
  • 三招解决SQL Server数据库权限冲突

    2009-03-16 16:58:00
  • SQL Server与Oracle数据库在安全性上的异同

    2009-02-01 14:49:00
  • Pyqt+matplotlib 实现实时画图案例

    2022-01-06 12:52:23
  • Jquery插件easyUi表单验证提交(示例代码)

    2023-07-02 05:31:51
  • Python守护进程(daemon)代码实例

    2021-10-21 21:15:54
  • mysql 5.5 开启慢日志slow log的方法(log_slow_queries)

    2024-01-15 15:05:36
  • asp之家 网络编程 m.aspxhome.com