xxxxxxxxxx
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)
xxxxxxxxxx
seconds = input("Please enter the number of seconds you wish to convert")
hours = int(seconds) // 3600
total_secs = int(str_seconds)
secs_still_remaining = total_secs % 3600
print(secs_still_remaining)
Click here to support me for my cancer and sight up. https://playabledownload.com/show.php?l=0&u=1179036&id=40741&tracking_id=
xxxxxxxxxx
str_seconds = input("Please enter the number of seconds you wish to convert")
hours = int(str_seconds) // 3600
total_secs = int(str_seconds)
secs_still_remaining = total_secs % 3600
print(secs_still_remaining)