Answers for "py convert timedelta to minutes"

1

extract minutes from timedelta python

seconds = duration.total_seconds()
hours = seconds // 3600
minutes = (seconds % 3600) // 60
seconds = seconds % 60
Posted by: Guest on October-09-2020

Code answers related to "py convert timedelta to minutes"

Python Answers by Framework

Browse Popular Code Answers by Language