timedelta in hours python code example

Example 1: python timedelta

from datetime import timedelta 
tomorrow = datetime.today() + timedelta(days = 1)

Example 2: extract minutes from timedelta python

seconds = duration.total_seconds()
hours = seconds // 3600
minutes = (seconds % 3600) // 60
seconds = seconds % 60

Example 3: convert timedelta to days

# Convert TimeDelta column (5 days etc.) into an integer column (5)
import numpy as np
df.timeDelta = (df.timeDelta / np.timedelta64(1,'D')).astype(int)