I have a column of times that are stored as strings. What I would like to do is take "3:00pm" and convert it to a datetime object that's 15:00 (24 hour clock).
I could always write a custom function that parses out the string, identifies whether it's am or pm, and create a mapping, but I was wondering if there's any built in functionality in Python or Pandas to do this efficiently.
Thanks so much!