Answers for "python get date in format"

2

python printing date

import datetime
print(datetime.datetime.now()) # --> (year, month, day, hour, minute, second, millisecond)
Posted by: Guest on October-03-2020
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

Python Answers by Framework

Browse Popular Code Answers by Language