zoukankan      html  css  js  c++  java
  • python获取指定时间差的时间

    在分析数据的时间经常需要截取一定范围时间的数据,比如三天之内,两小时前等等时间要求的数据,因此将该部分经常需要用到的功能模块化,方便以后以后用到的时候复用。在此,也分享给大家。

    <span style="font-size:18px;">#coding:utf-8
    '''
    Created on 2016年5月3日
    
    @author: baocheng
    '''
    import time
    import sys
    reload(sys)
    
    def get_day_of_day(UTC=False, days=0, hours=0, miutes=0, seconds=0):
            '''''
            if days>=0,date is larger than today
            if days<0,date is less than today
            date format = "YYYY-MM-DD"
            '''
            now = time.time()
            timeNew = now  + days*24*60*60 + hours*60*60 + miutes*60 + seconds
            if UTC :
                timeNew = timeNew + time.timezone
            t = time.localtime(timeNew)
            return time.strftime('%Y-%m-%d %H:%M:%S', t)
     
    #使用UTC时间 两小时前           
    t = get_day_of_day(True,0,-2)
    print t
    #当地时间 三天前
    t = get_day_of_day(False,-3)
    print t
    #当地时间  三天后
    t = get_day_of_day(False,3)
    print t</span>


    运行后所得结果:

    <span style="font-size:18px;">2016-05-03 10:25:56
    2016-04-30 20:25:56
    2016-05-06 20:25:56</span>

    个人博客新址 : dataminingclub


  • 相关阅读:
    MJExtension的使用
    Swift
    2月22号 UITableView
    1月25号 CALayer
    1月22号 animation—1
    1月22号 KVC KVO
    2016.01.22 简单动画
    2016.01.22 KVC&KVO
    2016.01.22 单例模式(Singleton)
    2016.01.21 UITabBarController
  • 原文地址:https://www.cnblogs.com/cl1024cl/p/6205031.html
Copyright © 2011-2022 走看看