📅  最后修改于: 2022-03-11 14:57:25.044000             🧑  作者: Mango
seconds = input("Please enter the number of seconds you wish to convert")
hours = int(seconds) // 3600
total_secs = int(seconds)
secs_still_remaining = total_secs % 3600
print(secs_still_remaining)