Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

Python Pandas - Timedelta 객체에서 총 기간(초) 가져오기

<시간/>

Timedelta 개체에서 지속 시간의 총 초를 가져오려면 timedelta.total_seconds()를 사용하세요. 방법.

먼저 필요한 라이브러리를 가져옵니다 -

import pandas as pd

TimeDeltas는 다른 표현인 timedelta를 사용하는 Python의 표준 datetime 라이브러리입니다. Create a Timedelta object −

timedelta = pd.Timedelta('2 days 11 hours 22 min 25 s 50 ms 45 ns')

타임델타 표시 -

print("Timedelta...\n", timedelta)

총 초 가져오기 -

timedelta.total_seconds()

예시

다음은 코드입니다 -

import pandas as pd

# TimeDeltas is Python’s standard datetime library uses a different representation timedelta’s
# create a Timedelta object
timedelta = pd.Timedelta('2 days 11 hours 22 min 25 s 50 ms 45 ns')

# display the Timedelta
print("Timedelta...\n", timedelta)

# get the total seconds
res = timedelta.total_seconds()

# Return the result i.e. the total seconds in the duration
print("\nTotal seconds...\n", res)

출력

이것은 다음 코드를 생성합니다 -

Timedelta...
2 days 11:22:25.050000045

Total seconds...
213745.05