Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
Python Pandas - Return the maximum value of the Timedelta object
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
Advertisements
