Python Pandas - Get the Total seconds in the duration from the Timedelta object


To get the Total seconds in the duration from the Timedelta object, use the timedelta.total_seconds() method.

At first, import the required libraries −

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 −

timedelta.total_seconds()

Example

Following is the code −

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)

Output

This will produce the following code −

Timedelta...
2 days 11:22:25.050000045

Total seconds...
213745.05

Updated on: 14-Oct-2021

14K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements