Python – Getting today’s date in YYYY-MM-DD in Python

datetimepythonpython-datetime

I'm using:

str(datetime.datetime.today()).split()[0]

to return today's date in the YYYY-MM-DD format.

Is there a less crude way to achieve this?

Best Answer

You can use strftime:

>>> from datetime import datetime
>>> datetime.today().strftime('%Y-%m-%d')
'2021-01-26'

Additionally, for anyone also looking for a zero-padded Hour, Minute, and Second at the end: (Comment by Gabriel Staples)

>>> datetime.today().strftime('%Y-%m-%d-%H:%M:%S')
'2021-01-26-16:50:03'