Return Maximum Value of Timedelta Object in Python Pandas



To return the maximum value of the Timedelta object, timedelta.max property. At first, import the required libraries −

import pandas as pd

Create a Timedelta object

timedelta = pd.Timedelta('5 days 1 min 45 s 40 ns')

Return the maximum value

timedelta.max

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 40 ns')

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

# return the maximum value
res = timedelta.max

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

Output

This will produce the following code

Timedelta...
 5 days 00:01:45.000000040

Timedelta (max value)...
 106751 days 23:47:16.854775807
Updated on: 2021-10-13T07:39:45+05:30

667 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements