Answers for "how to get date from string in python"

8

python datetime from string

from datetime import datetime

datetime_object = datetime.strptime('Jun 1 2005  1:33PM', '%b %d %Y %I:%M%p')
Posted by: Guest on May-30-2020
2

convert str to datetime

import datetime

# str value "Apr 2, 2019" convert into any format. 
datetime.datetime.strptime('Apr 2, 2019', '%b %d, %Y').strftime('%a, %d %b %Y')
Posted by: Guest on May-13-2020

Code answers related to "how to get date from string in python"

Python Answers by Framework

Browse Popular Code Answers by Language