この記事では、指定した時差のタイムインスタンスを取得するPythonに関する関連情報を主に紹介しますので、必要な方は参考にしてください
指定した時差のタイムインスタンスを取得するPythonの詳細な説明です
データ分析では、3日以内のデータや2時間前のデータなど、一定範囲の時刻を傍受する必要があることが多いため、この部分で頻繁に使用する機能はモジュール化されており、システムで使用する際に再利用しやすくなっています。未来。ここで、あなたにもそれを共有します。
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 中国語 Web サイトの他の関連記事を参照してください。