How to convert string with date time and other text into datetime in Python

1 Answer

0 votes
from datetime import datetime

s = "aaa February the 2th of 2020 bbb ccc at 7:15 PM"
 
dt = datetime.strptime(s, "aaa %B the %dth of %Y bbb ccc at %I:%M %p")
 
print(dt)
 

 
'''
run:

2020-02-02 19:15:00
 
'''

 



answered Feb 4, 2020 by avibootz

Related questions

1 answer 203 views
2 answers 181 views
3 answers 240 views
1 answer 98 views
...