Today we are going to share a Python program to convert time from 12 hour to 24 hour format. If you are a python beginner and want to start learning the python programming, then keep your close attention in this tutorial as I am going to share a Python program to convert time from 12 hour to 24 hour format.
To increase your Python knowledge, practice all Python programs, here is a collection of 100+ Python problems with solutions.
Copy the below python program and execute it with the help of python compiler.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | def convert24(str1): if str1[-2:] == "AM" and str1[:2] == "12": return "00" + str1[2:-2] elif str1[-2:] == "AM": return str1[:-2] elif str1[-2:] == "PM" and str1[:2] == "12": return str1[:-2] else: return str(int(str1[:2]) + 12) + str1[2:8] print(convert24("08:05:45 PM")) |
Input : 11:21:30 PM
Output : 23:21:30
If you like FreeWebMentor and you would like to contribute, you can write an article and mail your article to [email protected] Your article will appear on the FreeWebMentor main page and help other developers.