To return a new Timedelta ceiled to this resolution, use the timedelta.ceil() method. For daily ceiling resolution, set the freq parameter to the value D.
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('6 days 1 min 30 s')
Display the Timedelta
print("Timedelta...\n", timedelta)Return the ceiled Timestamp with daily ceiling resolution
timedelta.ceil(freq='D')
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('6 days 1 min 30 s')
# display the Timedelta
print("Timedelta...\n", timedelta)
# return the ceiled Timestamp
# with daily ceiling resolution
res = timedelta.ceil(freq='D')
# display the ceiled Timestamp
print("\nTimedelta (daily ceiled)...\n", res)Output
This will produce the following code
Timedelta... 6 days 00:01:30 Timedelta (daily ceiled)... 7 days 00:00:00