programming-examples/python/Date/Python program to convert a string to datetime.py

3 lines
129 B
Python
Raw Normal View History

2019-11-15 12:59:38 +01:00
from datetime import datetime
date_object = datetime.strptime('Jul 1 2014 2:43PM', '%b %d %Y %I:%M%p')
print(date_object)