In the code below why does line 8 and 9 for “See the answer” show double “//” for division? It still works but is there a reason?
seconds = 48600
Write your answer below
hour = int(seconds / 3600)
minute = int((seconds - 3600 * hour) / 60)
Alternative solution
hour = seconds // 3600
minute = (seconds - 3600 * hour) // 60
https://app.dataquest.io/m/1008/variables-and-data-types-practice-problems/4/what-time-is-it
*for some reason I can’t get the “#” to show up for line 3 and 7.