Để nhận Tổng số giây trong khoảng thời gian từ đối tượng Timedelta, hãy sử dụng timedelta.total_seconds () phương pháp.
Đầu tiên, hãy nhập các thư viện được yêu cầu -
import pandas as pd
TimeDeltas là thư viện ngày giờ tiêu chuẩn của Python sử dụng một cách biểu diễn khác là thời gian của họ, Tạo một đối tượng Timedelta -
timedelta = pd.Timedelta('2 days 11 hours 22 min 25 s 50 ms 45 ns')
Hiển thị Timedelta -
print("Timedelta...\n", timedelta)
Nhận tổng số giây -
timedelta.total_seconds()
Ví dụ
Sau đây là mã -
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)
Đầu ra
Điều này sẽ tạo ra mã sau -
Timedelta... 2 days 11:22:25.050000045 Total seconds... 213745.05