Python Pandas - Get the number of days from TimeDelta


To get the number of days from TimeDelta, use the timedelta.days property in Pandas. 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('5 days 1 min 45 s')

Return the number of days

timedelta.days

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('5 days 1 min 45 s')

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

# return the number of days
res = timedelta.days

# display the days
print("\nDays...\n", res)

Output

This will produce the following code

Timedelta...
 5 days 00:01:45

Days...
 5

Updated on: 13-Oct-2021

7K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements