I\'m trying to convert times from 12 hour times into 24 hour times...
06:35 ## Morning 11:35 ## Morning (If m2 is anywhe
Instead of using "H" for hour indication use "I" as described in the example bellow:
from datetime import * m2 = 'Dec 14 2018 1:07PM' m2 = datetime.strptime(m2, '%b %d %Y %I:%M%p') print(m2)
Please check this link