Question: I need this to be in python IDLE version 3.5 or higher and the hour times I need to enter in are on the right
I need this to be in python IDLE version 3.5 or higher and the hour times I need to enter in are on the right side with test.

.. 5. Read in a time such as 3 pm and print the equivalent military hour (such as 15). Validate the input. o If the number isn't between 1 and 12, print: Error: The hour must be between 1 and 12. o If the suffix isn't "am" or "pm", print: Error: The suffix must be am or pm. verifytime.py 1 hour = int(input("Enter the hour: ")) 2 if...: 3 suffix = input ("Enter the suffix: ") suffix = suffix. lower() if ...: # Convert hour to military time. print(hour) else: print("Error: The suffix must be am or pm.") 12 else : 13 print("Error: The hour must be between 1 and 12.") 4 5 6 7 8 10 11 CodeCheck Reset 5. Read in a time such as 3 pm and print the equivalent military hour (such as 15). Validate the input. Test 1 3 Enter the hour: Enter the suffix: pm 15 pass Test 2 Enter the hour: 12 Enter the suffix: noon Error: The suffix must be am or pm. pass 7 Test 3 . If the number isn't between 1 and 12, print: Error: The hour must be between 1 and 12. If the suffix isn't "am" or "pm", print: Error: The suffix must be am or pm. verifytime.py 1 hour = int(input("Enter the hour: ")) 2 if hour>sl and hour
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
