Python Pandas - Get the seconds from Timedelta object using integer 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 integer input for seconds using unit 's'. Create a Timedelta object

timedelta = pd.Timedelta(50, unit ='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 integer input for seconds using unit 's'
# create a Timedelta object
timedelta = pd.Timedelta(50, unit ='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:00:50

Timedelta (seconds value)...
50

Updated on: 13-Oct-2021

180 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements