Answers for "python set date format from current date"

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
0

how to change todays date formate in python

>>> from datetime import datetime
>>> datetime.today().strftime('%Y-%m-%d')
'2021-01-26'
Posted by: Guest on July-29-2021

Python Answers by Framework

Browse Popular Code Answers by Language