Answers for "construct a datetime object for specific date python"

3

how to set datetime format in python

import datetime

x = datetime.datetime(2018, 9, 15)

print(x.strftime("%b %d %Y %H:%M:%S"))
Posted by: Guest on May-15-2020

Code answers related to "construct a datetime object for specific date python"

Python Answers by Framework

Browse Popular Code Answers by Language