SyntaxFix
Write A Post
Hire A Developer
Questions
I used the following:
delta = timedelta() totalMinute, second = divmod(delta.seconds, 60) hour, minute = divmod(totalMinute, 60) print(f"{hour}h{minute:02}m{second:02}s")