Waiting for answer This question has not been answered yet. You can hire a professional tutor to get the answer.
How to write a program to ask the user to enter the number of seconds since midnight. Calculate and display the time, including hour, minute, second...
How to write a program to ask the user to enter the number of seconds since midnight. Calculate and display the time, including hour, minute, second and AM/PM in Python.
The following are some examples.
Enter number of seconds since midnight: 3725
The time is 1 : 2 : 5 AM
Enter number of seconds since midnight: 86339
The time is 11 : 58 : 59 PM
Enter number of seconds since midnight: 440
The time is 12 : 7 : 20 AM
Enter number of seconds since midnight: 44097
The time is 12 : 14 : 57 PM