python datetime fromat code example
Example 1: python datetime now
import datetime
print(datetime.datetime.now()) #datetime.datetime.now() is the syntax
Example 2: strptime python
import datetime
d = datetime.datetime.strptime("01/27/2012", "%m/%d/%Y")
print(d)
output ....
2012-01-27 00:00:00