python-gift-exchange icon indicating copy to clipboard operation
python-gift-exchange copied to clipboard

Make Date Format Dynamic

Open sethblack opened this issue 5 years ago • 2 comments

Date format is in US MM/DD/YYYY and pretty much nobody else uses that format.

sethblack avatar Nov 04 '19 01:11 sethblack

how about converting it to datetime object?

so people could just format it according to their own need?

svmihar avatar Nov 04 '19 03:11 svmihar

I'd recommend just using the ISO-8601 date format of YYYY-MM-DD. It's far less confusing then any local formats that swap months and days, is generally understood, and has the bonus of being (simply) sortable.

cwkingjr avatar Mar 13 '23 20:03 cwkingjr