Home > Back-end >  Convert YYYY-MM-DD to DD-MMM-YYYY in Python
Convert YYYY-MM-DD to DD-MMM-YYYY in Python

Time:01-20

I'm trying to convert a list of dates (strings) in the format 2023-01-19 into the format 19-Jan-2023. The code I currently have does not work:

date_list = ['2023-01-19', '2023-01-07', '2022-11-29']
new_date_list = []

for date in date_list:
   date_new_format = datetime.datetime(date, '           
  • Related