Answers for "how to return number of minutes from time delta"

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

Python Answers by Framework

Browse Popular Code Answers by Language