I have a function that returns information in seconds, but I need to store that information in hours:minutes:seconds.
Is there an easy way to convert the seconds to
division = 3623 // 3600 #to hours division2 = 600 // 60 #to minutes print (division) #write hours print (division2) #write minutes
PS My code is unprofessional