Python Pandas - Return the seconds from Timedelta object


To return the seconds from Timedelta object, use the timedelta.seconds property. 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('10 s 15 ms 33 ns')

Display the Timedelta

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

Return the seconds value

timedelta.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('10 s 15 ms 33 ns')

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

# return the seconds value
res = timedelta.seconds

# display the seconds
print("\nTimedelta (seconds value)...\n", res)

Output

This will produce the following code

Timedelta...
0 days 00:00:10.015000033

Timedelta (seconds value)...
10

Updated on: 13-Oct-2021

157 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements