(python) 12. Create a function based on the following information: You prefer a good old 12-hour time format. But the modern world we live in would rather use the 24-hour format and you see it everywhere. Your task is to convert the time from the 24-h format into 12-h format by following the next rules: - the output format should be 'hh:mm a.m.' (for hours before midday) or 'hh:mm p.m.' (for hours after midday) - if hours is less than 10 - don't write a '0' before it. For example: '9:05 a.m.' Here you can find some useful information about the 12-hour format (Links to an external site.). Input: Time in a 24-hour format (as a string). Output: Time in a 12-hour format (as a string). Return: Nothing is returned
(python)
12. Create a function based on the following information:
You prefer a good old 12-hour time format. But the modern world we live in would rather use the 24-hour format and you see it everywhere. Your task is to convert the time from the 24-h format into 12-h format by following the next rules:
- the output format should be 'hh:mm a.m.' (for hours before midday) or 'hh:mm p.m.' (for hours after midday)
- if hours is less than 10 - don't write a '0' before it. For example: '9:05 a.m.'
Here you can find some useful information about the 12-hour format (Links to an external site.).
Input: Time in a 24-hour format (as a string).
Output: Time in a 12-hour format (as a string).
Return: Nothing is returned
Trending now
This is a popular solution!
Step by step
Solved in 3 steps with 1 images