Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

strp datetime

from datetime import datetime

date_string = "22 June, 2022"

print("date_string =", date_string)
print("type of date_string =", type(date_string))

date_object = datetime.strptime(date_string, "%d %B, %Y")

print("date_object =", date_object)
print("type of date_object =", type(date_object))
Source by www.programiz.com #
 
PREVIOUS NEXT
Tagged: #strp #datetime
ADD COMMENT
Topic
Name
7+3 =