這篇文章主要介紹了python取得指定時間差的時間實例詳解的相關資料,需要的朋友可以參考下
python取得指定時間差的時間實例詳解
#在分析數據的時間經常需要截取一定範圍時間的數據,例如三天之內,兩小時前等等時間要求的數據,因此將該部分經常需要用到的功能模組化,方便以後以後用到的時候復用。在此,也分享給大家。
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
運行後所得結果:
2016-04-30 20:25:56 2016-05-06 20:25:56
以上是教你如何使用python取得指定時間差的時間的詳細內容。更多資訊請關注PHP中文網其他相關文章!