Python实现根据日期获取当天凌晨时间戳的方法示例

时间:2022-11-19 12:48:45

本文实例讲述了python实现根据日期获取当天凌晨时间戳的方法。分享给大家供大家参考,具体如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- coding:utf-8 -*-
#! python2
'''
created on 2019年4月9日
@author: administrator
'''
import datetime
import time
def get_day_zero_time(date):
  """根据日期获取当天凌晨时间"""
  if not date:
    return 0
  date_zero = datetime.datetime.now().replace(year=date.year, month=date.month,
                         day=date.day, hour=0, minute=0, second=0)
  date_zero_time = int(time.mktime(date_zero.timetuple()))
  return date_zero_time
# 今天的日期
today_date = datetime.datetime.now().date()
# 今天的零点
today_zero_time = get_day_zero_time(today_date)
#print today_date
print today_zero_time

运行结果:

1554739200

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

原文链接:https://blog.csdn.net/xuezhangjun0121/article/details/86550219