What I mean is, let's say I have the date '2018-05-20'. I want it in the form of 'May 20th, 2018'. What is the best way to do this without brute-forcing (below, for example) so that you don't have to create a bunch of dictionary entries and then deal with mapping all the numbers for months and dates to their English representation?
monthDict = {}
monthDict['01'] = 'January'
monthDict['02'] = 'February'
monthDict['03'] = 'March'
monthDict['04'] = 'April'
monthDict['05'] = 'May'
monthDict['06'] = 'June'
monthDict['07'] = 'July'
monthDict['08'] = 'August'
monthDict['09'] = 'September'
monthDict['10'] = 'October'
monthDict['11'] = 'November'
monthDict['12'] = 'December'