Python Pandas - Get the seconds from Timedelta object using string input


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. Set string input for seconds using unit 's'. Create a Timedelta object

timedelta = pd.Timedelta('1 min 30 s')

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
# set string input for seconds using unit 's'
# create a Timedelta object
timedelta = pd.Timedelta('1 min 30 s')

# 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:01:30

Timedelta (seconds value)...
90

Updated on: 13-Oct-2021

174 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements