Answer the question
In order to leave comments, you need to log in
Convert seconds to seconds, minutes, hours, days, months, years?
I have seconds how to convert to seconds, minutes, hours, days, months, years with a converter?
seconds_in_hour = 3600
seconds_in_minute = 60
seconds = int(error.retry_after)
hours = seconds // seconds_in_hour
seconds = seconds - (hours * seconds_in_hour)
minutes = seconds // seconds_in_minute
seconds = seconds - (minutes * seconds_in_minute)
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question