Answers for "strptime and strftime in python"

10

strftime python

date_time = now.strftime("%m/%d/%Y, %H:%M:%S")
Posted by: Guest on January-22-2021
4

strptime python

import datetime
d =datetime.datetime.strptime("01/27/2012","%m/%d/%Y").strftime('%m/%d/%Y')
print d
01/27/2012
Posted by: Guest on October-08-2020
3

python example strptime

from datetime import datetime

date_string = "21 June, 2018"

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))
Posted by: Guest on April-15-2020
0

strptime python

import datetime
d = datetime.datetime.strptime("01/27/2012", "%m/%d/%Y")
print(d)
output ....
2012-01-27 00:00:00
Posted by: Guest on October-08-2020

Python Answers by Framework

Browse Popular Code Answers by Language