Pythonで2つの日時オブジェクト間の時間差を見つけるにはどうすればよいですか?


回答:


374
>>> import datetime
>>> first_time = datetime.datetime.now()
>>> later_time = datetime.datetime.now()
>>> difference = later_time - first_time
>>> seconds_in_day = 24 * 60 * 60
datetime.timedelta(0, 8, 562000)
>>> divmod(difference.days * seconds_in_day + difference.seconds, 60)
(0, 8)      # 0 minutes, 8 seconds

初回から後の時刻を引くと、difference = later_time - first_time違いのみを保持する日時オブジェクトが作成されます。上記の例では、0分、8秒、562000マイクロ秒です。


2
リファレンス:docs.python.org/library/datetime.html#datetime-objects。「サポートされている操作」をお読みください。
S.Lott、2009

@SilentGhost、時間、分、秒で取得する方法
Mulagala

1
@markcial:delorean誤解を招くdatetimepytzアプローチなど。たとえば、開始コードの例は次のように記述できますd = datetime.now(timezone(EST))(5行ではなく1行の読み取り可能)。
jfs

1
注:現地時間を表す単純なdatetimeオブジェクトで日付/時刻演算を実行するときは注意が必要です。たとえば、DST移行の前後で失敗する可能性があります。参照してください私の答えに詳細とのリンクを
JFS

日、分、秒の違いを見つけるためにcはどのように使用されますか?
Zeeshan Mahmood 2016

152

Python 2.7の新機能はtimedeltaインスタンスメソッド.total_seconds()です。Python docsから、これは次と同等です(td.microseconds + (td.seconds + td.days * 24 * 3600) * 10**6) / 10**6です。

リファレンス:http : //docs.python.org/2/library/datetime.html#datetime.timedelta.total_seconds

>>> import datetime
>>> time1 = datetime.datetime.now()
>>> time2 = datetime.datetime.now() # waited a few minutes before pressing enter
>>> elapsedTime = time2 - time1
>>> elapsedTime
datetime.timedelta(0, 125, 749430)
>>> divmod(elapsedTime.total_seconds(), 60)
(2.0, 5.749430000000004) # divmod returns quotient and remainder
# 2 minutes, 5.74943 seconds


107

日時の例を使用する

>>> from datetime import datetime
>>> then = datetime(2012, 3, 5, 23, 8, 15)        # Random date in the past
>>> now  = datetime.now()                         # Now
>>> duration = now - then                         # For build-in functions
>>> duration_in_s = duration.total_seconds()      # Total number of seconds between dates

年単位の期間

>>> years = divmod(duration_in_s, 31536000)[0]    # Seconds in a year=365*24*60*60 = 31536000.

日数

>>> days  = duration.days                         # Build-in datetime function
>>> days  = divmod(duration_in_s, 86400)[0]       # Seconds in a day = 86400

時間単位の期間

>>> hours = divmod(duration_in_s, 3600)[0]        # Seconds in an hour = 3600

分単位の期間

>>> minutes = divmod(duration_in_s, 60)[0]        # Seconds in a minute = 60

秒単位の期間

>>> seconds = duration.seconds                    # Build-in datetime function
>>> seconds = duration_in_s

マイクロ秒単位の期間

>>> microseconds = duration.microseconds          # Build-in datetime function  

2つの日付間の合計期間

>>> days    = divmod(duration_in_s, 86400)        # Get days (without [0]!)
>>> hours   = divmod(days[1], 3600)               # Use remainder of days to calc hours
>>> minutes = divmod(hours[1], 60)                # Use remainder of hours to calc minutes
>>> seconds = divmod(minutes[1], 1)               # Use remainder of minutes to calc seconds
>>> print("Time between dates: %d days, %d hours, %d minutes and %d seconds" % (days[0], hours[0], minutes[0], seconds[0]))

または単に:

>>> print(now - then)

2019を編集 この回答が勢力を得たので、一部の使用を簡素化する可能性がある関数を追加します

from datetime import datetime

def getDuration(then, now = datetime.now(), interval = "default"):

    # Returns a duration as specified by variable interval
    # Functions, except totalDuration, returns [quotient, remainder]

    duration = now - then # For build-in functions
    duration_in_s = duration.total_seconds() 

    def years():
      return divmod(duration_in_s, 31536000) # Seconds in a year=31536000.

    def days(seconds = None):
      return divmod(seconds if seconds != None else duration_in_s, 86400) # Seconds in a day = 86400

    def hours(seconds = None):
      return divmod(seconds if seconds != None else duration_in_s, 3600) # Seconds in an hour = 3600

    def minutes(seconds = None):
      return divmod(seconds if seconds != None else duration_in_s, 60) # Seconds in a minute = 60

    def seconds(seconds = None):
      if seconds != None:
        return divmod(seconds, 1)   
      return duration_in_s

    def totalDuration():
        y = years()
        d = days(y[1]) # Use remainder to calculate next variable
        h = hours(d[1])
        m = minutes(h[1])
        s = seconds(m[1])

        return "Time between dates: {} years, {} days, {} hours, {} minutes and {} seconds".format(int(y[0]), int(d[0]), int(h[0]), int(m[0]), int(s[0]))

    return {
        'years': int(years()[0]),
        'days': int(days()[0]),
        'hours': int(hours()[0]),
        'minutes': int(minutes()[0]),
        'seconds': int(seconds()),
        'default': totalDuration()
    }[interval]

# Example usage
then = datetime(2012, 3, 5, 23, 8, 15)
now = datetime.now()

print(getDuration(then)) # E.g. Time between dates: 7 years, 208 days, 21 hours, 19 minutes and 15 seconds
print(getDuration(then, now, 'years'))      # Prints duration in years
print(getDuration(then, now, 'days'))       #                    days
print(getDuration(then, now, 'hours'))      #                    hours
print(getDuration(then, now, 'minutes'))    #                    minutes
print(getDuration(then, now, 'seconds'))    #                    seconds

7
なぜ誰もあなたに感謝してくれなかったのかは分かりません。そのような正確な答えをありがとうございました。@Attaque
アマンディープ・シン・ソーニー

次のTypeError: 'float' object is not subscriptable場合にエラーが発生しました:then = datetime(2017, 8, 11, 15, 58, tzinfo=pytz.UTC) now = datetime(2018, 8, 11, 15, 58, tzinfo=pytz.UTC) getDuration(then, now, 'years')
Piotr Wasilewicz

1
これは、1年の秒数を数えることができないためです:) 365 * 24 * 60 * 60 = 31536000ではなく、31556926です。私は答えと関数を更新しました。これで動作するはずです。
Attaque

1
これは受け入れられる答えになるはずです。
saran3h

28

他から1を引くだけです。timedelta違いのあるオブジェクトを取得します。

>>> import datetime
>>> d1 = datetime.datetime.now()
>>> d2 = datetime.datetime.now() # after a 5-second or so pause
>>> d2 - d1
datetime.timedelta(0, 5, 203000)

あなたは、変換することができdd.daysdd.secondsかつdd.microseconds分。


それらのパラメーターは何ですか?コメントがいいでしょう
TheRealChx101

22

の場合abdatetimeオブジェクトであり、Python 3でそれらの間の時間差を見つけるには、

from datetime import timedelta

time_difference = a - b
time_difference_in_minutes = time_difference / timedelta(minutes=1)

以前のPythonバージョン:

time_difference_in_minutes = time_difference.total_seconds() / 60

場合はab素朴な日時がで返さなどのオブジェクトされているdatetime.now()オブジェクトはDSTの移行の周りや過去/未来の日付のために、例えば、異なるUTCオフセットとローカル時間を表すならば、結果が間違っている可能性があります。詳細:日時間に24時間経過しているかどうかを確認する-Python

信頼できる結果を得るには、UTC時間またはタイムゾーン対応の日時オブジェクトを使用します。


17

divmodを使用:

now = int(time.time()) # epoch seconds
then = now - 90000 # some time in the past

d = divmod(now-then,86400)  # days
h = divmod(d[1],3600)  # hours
m = divmod(h[1],60)  # minutes
s = m[1]  # seconds

print '%d days, %d hours, %d minutes, %d seconds' % (d[0],h[0],m[0],s)

1
これは、datetimeモジュールに配置する必要があります。なぜ日、秒、ミリしか使用しなかったのか理解できません...
paulochf '12 / 12/05

これは、日時オブジェクトに関する質問には答えません。
elec3647 2017年

10

これは、2つのdatetime.datetimeオブジェクト間で経過した時間数を取得する方法です。

before = datetime.datetime.now()
after  = datetime.datetime.now()
hours  = math.floor(((after - before).seconds) / 3600)

9
これはうまくいきません:明示的に保存されているtimedelta.seconds秒数のみを示します-ドキュメントは合計で1日未満を保証します。デルタ全体にまたがる秒数を示すが必要です。(after - before).total_seconds()
lvc 2013年

1
(after - before).total_seconds() // 3600(Python 2.7)または(after - before) // timedelta(seconds=3600)(Python 3)
jfs

@lvc私の古いコードは実際にそのように書かれていて、私は賢く、それを「修正」していると思いました。訂正ありがとうございます。
Tony

@JFSebastianそのおかげで、//演算子を忘れてしまいました。そして私はpy3構文の方が好きですが、2.7を使用しています。
トニー

9

日数を見つけるだけの場合:timedeltaには「days」属性があります。あなたは単にそれをクエリすることができます。

>>>from datetime import datetime, timedelta
>>>d1 = datetime(2015, 9, 12, 13, 9, 45)
>>>d2 = datetime(2015, 8, 29, 21, 10, 12)
>>>d3 = d1- d2
>>>print d3
13 days, 15:59:33
>>>print d3.days
13

5

timedeltaに関してもフォーマットについて言及することが有用であると考えただけです。strptime()は、フォーマットに従って時間を表す文字列を解析します。

from datetime import datetime

datetimeFormat = '%Y/%m/%d %H:%M:%S.%f'    
time1 = '2016/03/16 10:01:28.585'
time2 = '2016/03/16 09:56:28.067'  
time_dif = datetime.strptime(time1, datetimeFormat) - datetime.strptime(time2,datetimeFormat)
print(time_dif)

これは出力されます:0:05:00.518000


3

私はこのようなsomethignを使用します:

from datetime import datetime

def check_time_difference(t1: datetime, t2: datetime):
    t1_date = datetime(
        t1.year,
        t1.month,
        t1.day,
        t1.hour,
        t1.minute,
        t1.second)

    t2_date = datetime(
        t2.year,
        t2.month,
        t2.day,
        t2.hour,
        t2.minute,
        t2.second)

    t_elapsed = t1_date - t2_date

    return t_elapsed

# usage 
f = "%Y-%m-%d %H:%M:%S+01:00"
t1 = datetime.strptime("2018-03-07 22:56:57+01:00", f)
t2 = datetime.strptime("2018-03-07 22:48:05+01:00", f)
elapsed_time = check_time_difference(t1, t2)

print(elapsed_time)
#return : 0:08:52

2
あなたは完全に良い日時を取得しますが、なぜそれらをコピーするのですか?あなたのコードの75%は次のように表現できますreturn t1-t2
Patrick Artner

2

これは、現在の時刻と午前9時30分との違いを見つけるためです。

t=datetime.now()-datetime.now().replace(hour=9,minute=30)

1

これはmktimeを使用した私のアプローチです。

from datetime import datetime, timedelta
from time import mktime

yesterday = datetime.now() - timedelta(days=1)
today = datetime.now()

difference_in_seconds = abs(mktime(yesterday.timetuple()) - mktime(today.timetuple()))
difference_in_minutes = difference_in_seconds / 60

mktime()入力として現地時間を想定しています。現地時間があいまいでmktime()、この場合は間違った答えを返す可能性があります。代わりに(a、b-datetimeオブジェクト)を使用してくださいa - bmktime()不要であり、それは時々間違っています。この場合は使用しないでください。
jfs 2014年

@AnneTheAgile、修正済み、インポートに関する私の失敗。Python 2.7.12でテスト
Eduardo

1

日付の違いを取得する他の方法で;

import dateutil.parser
import datetime
last_sent_date = "" # date string
timeDifference = current_date - dateutil.parser.parse(last_sent_date)
time_difference_in_minutes = (int(timeDifference.days) * 24 * 60) + int((timeDifference.seconds) / 60)

したがって、最小で出力を取得します。

ありがとう


1

継続的インテグレーションテストに時差を使用して、機能をチェックおよび改善しました。誰かが必要な場合の簡単なコードは次のとおりです

from datetime import datetime

class TimeLogger:
    time_cursor = None

    def pin_time(self):
        global time_cursor
        time_cursor = datetime.now()

    def log(self, text=None) -> float:
        global time_cursor

        if not time_cursor:
            time_cursor = datetime.now()

        now = datetime.now()
        t_delta = now - time_cursor

        seconds = t_delta.total_seconds()

        result = str(now) + ' tl -----------> %.5f' % seconds
        if text:
            result += "   " + text
        print(result)

        self.pin_time()

        return seconds


time_logger = TimeLogger()

使用:

from .tests_time_logger import time_logger
class Tests(TestCase):
    def test_workflow(self):
    time_logger.pin_time()

    ... my functions here ...

    time_logger.log()

    ... other function(s) ...

    time_logger.log(text='Tests finished')

そして、私はログ出力にそのようなものがあります

2019-12-20 17:19:23.635297 tl -----------> 0.00007
2019-12-20 17:19:28.147656 tl -----------> 4.51234   Tests finished

0

@Attaqueのすばらしい回答に基づいて、日時差分計算機の短い簡略版を提案します。

seconds_mapping = {
    'y': 31536000,
    'm': 2628002.88, # this is approximate, 365 / 12; use with caution
    'w': 604800,
    'd': 86400,
    'h': 3600,
    'min': 60,
    's': 1,
    'mil': 0.001,
}

def get_duration(d1, d2, interval, with_reminder=False):
    if with_reminder:
        return divmod((d2 - d1).total_seconds(), seconds_mapping[interval])
    else:
        return (d2 - d1).total_seconds() / seconds_mapping[interval]

繰り返し機能の宣言を回避するために変更し、きれいな印刷のデフォルト間隔を削除し、ミリ秒、週、およびISO月のサポートを追加しました(各月が 365/12です)。

生成されるもの:

d1 = datetime(2011, 3, 1, 1, 1, 1, 1000)
d2 = datetime(2011, 4, 1, 1, 1, 1, 2500)

print(get_duration(d1, d2, 'y', True))      # => (0.0, 2678400.0015)
print(get_duration(d1, d2, 'm', True))      # => (1.0, 50397.12149999989)
print(get_duration(d1, d2, 'w', True))      # => (4.0, 259200.00149999978)
print(get_duration(d1, d2, 'd', True))      # => (31.0, 0.0014999997802078724)
print(get_duration(d1, d2, 'h', True))      # => (744.0, 0.0014999997802078724)
print(get_duration(d1, d2, 'min', True))    # => (44640.0, 0.0014999997802078724)
print(get_duration(d1, d2, 's', True))      # => (2678400.0, 0.0014999997802078724)
print(get_duration(d1, d2, 'mil', True))    # => (2678400001.0, 0.0004999997244524721)

print(get_duration(d1, d2, 'y', False))     # => 0.08493150689687975
print(get_duration(d1, d2, 'm', False))     # => 1.019176965856293
print(get_duration(d1, d2, 'w', False))     # => 4.428571431051587
print(get_duration(d1, d2, 'd', False))     # => 31.00000001736111
print(get_duration(d1, d2, 'h', False))     # => 744.0000004166666
print(get_duration(d1, d2, 'min', False))   # => 44640.000024999994
print(get_duration(d1, d2, 's', False))     # => 2678400.0015
print(get_duration(d1, d2, 'mil', False))   # => 2678400001.4999995
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.