timedelta를 문자열로 형식화
Python에서는 str() 함수를 사용하여 datetime.timedelta 객체를 문자열로 변환할 수 있습니다. 결과 문자열은 "hh:mm:ss.frac_seconds" 형식이 됩니다. 예:
import datetime start = datetime.datetime(2009, 2, 10, 14, 00) end = datetime.datetime(2009, 2, 10, 16, 00) delta = end - start str_duration = str(delta) print(str_duration) # prints 2:00:00
total_seconds() 메서드를 사용하여 timedelta 객체의 총 초 수를 가져올 수도 있습니다. 이는 기간을 가장 가까운 분 또는 시간으로 반올림하려는 경우 유용할 수 있습니다. 예:
rounded_seconds = round(delta.total_seconds()) rounded_minutes = rounded_seconds // 60 rounded_hours = rounded_minutes // 60
위 내용은 Python `timedelta` 객체를 사람이 읽을 수 있는 문자열로 형식화하려면 어떻게 해야 합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!