python get date in format code example
Example 1: how to set datetime format in python
import datetime
x = datetime.datetime(2018, 9, 15)
print(x.strftime("%b %d %Y %H:%M:%S"))
Example 2: python printing date
import datetime
print(datetime.datetime.now()) # --> (year, month, day, hour, minute, second, millisecond)