답변:
>>> 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
차이 만있는 datetime 객체가 만들어집니다. 위의 예에서 0 분, 8 초 및 562000 마이크로 초입니다.
delorean
misrepresents datetime
, pytz
접근 방식, 예를 들어 시작 코드 예제 는 다음과 같이 작성할 수 있습니다 d = datetime.now(timezone(EST))
(5 개 대신 1 개의 읽기 가능한 행).
Python 2.7의 새로운 기능은 timedelta
인스턴스 메소드 .total_seconds()
입니다. 파이썬 문서에서 이것은에 해당합니다 (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
날짜 시간 예제 사용
>>> 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
두 날짜 사이의 총 기간
>>> 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
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')
하나만 빼면됩니다. 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.days
, dd.seconds
그리고 dd.microseconds
분.
경우 a
, b
날짜 파이썬 3에서 그들 사이의 시간 차이를 찾기 위해 다음 오브젝트 있습니다 :
from datetime import timedelta
time_difference = a - b
time_difference_in_minutes = time_difference / timedelta(minutes=1)
이전 파이썬 버전에서 :
time_difference_in_minutes = time_difference.total_seconds() / 60
경우 a
, b
에 의해 반환 순진 날짜는 객체입니다 datetime.now()
개체가, UTC 오프셋 예 : 다른 주변 DST 전환 또는 과거 / 미래의 날짜 현지 시간을 나타내는 경우 잘못 될 수있다, 결과. 자세한 내용 : 날짜 시간 사이에 24 시간이 지 났는지 확인하십시오-Python .
안정적인 결과를 얻으려면 UTC 시간 또는 표준 시간대 인식 날짜 / 시간 개체를 사용하십시오.
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)
이것은 두 개의 datetime.datetime 객체 사이에 경과 된 시간 수를 얻는 방법입니다.
before = datetime.datetime.now()
after = datetime.datetime.now()
hours = math.floor(((after - before).seconds) / 3600)
timedelta.seconds
시간 (초) 만 제공합니다 . 문서는 총 하루 미만을 보장합니다. 당신이 원하는 스팬을 초 단위로 제공하는 전체 델타. (after - before).total_seconds()
(after - before).total_seconds() // 3600
(Python 2.7) 또는 (after - before) // timedelta(seconds=3600)
(Python 3)
타임 델타와 관련하여 형식을 언급하는 것이 유용 할 수 있다고 생각했습니다. 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
나는 다음과 같이 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
return t1-t2
이것은 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
대신에 (- 날짜 객체 A, B)를 . mktime()
불필요하고 때로는 잘못되었습니다. 이 경우에는 사용하지 마십시오.
날짜의 차이를 얻는 다른 방법들;
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)
따라서 Min으로 출력하십시오.
감사
지속적인 통합 테스트를 위해 시차를 사용하여 기능을 확인하고 개선했습니다. 누군가가 필요로하면 간단한 코드가 있습니다.
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
@Attaque great answer 에 따라 날짜 시간 차이 계산기의 더 짧은 버전을 제안합니다.
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